Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion server.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,3 @@ app.get('/*', function(req,res) {

// Start the app by listening on the default Heroku port
app.listen(process.env.PORT || 8080);
console.log('Console listening!! localhost:8080/')
2 changes: 1 addition & 1 deletion src/app/data-request.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export class DataRequestService {
constructor(private http: HttpClient) {
this.generalURL = this.dev_URL;
this.isOnline();
console.log(this.message);

}

public isOnline(): boolean {
Expand Down
4 changes: 2 additions & 2 deletions src/app/matrix.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ export class MatrixService {
if (this.dataRequest.isOnline()) {

if (A.getMatrixCols() !== A.getMatrixRows()) {
console.log(`cols:${A.getMatrixCols()} rows: ${A.getMatrixRows()}`);

const obj2 = JSON.parse(this.getMatrixDataJSON(A));
const js = obj2;
C = new Matrix(1, `C`, []);
Expand Down Expand Up @@ -286,7 +286,7 @@ export class MatrixService {
if (this.dataRequest.isOnline()) {

if (A.getMatrixCols() === A.getMatrixRows()) {
console.log(`cols:${A.getMatrixCols()} rows: ${A.getMatrixRows()}`);

const obj2 = JSON.parse(this.getMatrixDataJSON(A));
const js = obj2;
C = new Matrix(1, `C`, []);
Expand Down
4 changes: 2 additions & 2 deletions src/app/solver/advanced/advanced.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ export class AdvancedComponent implements OnInit {

private callTranspose() {
this.matrixC = this.matrixService.getTransposeMatrix(this.matrixA);
console.log(this.matrixC);

this.checkStatus();
this.showResult = true;
}
Expand All @@ -108,7 +108,7 @@ export class AdvancedComponent implements OnInit {
private checkStatus() {
if (this.matrixC.getStatus() != 200) {
this.message = `Trying to connect... \n We don't found response from the server. Check ur connection or try later. Estatus: ${this.matrixC.getStatus()}`
console.error(`${this.message}`);

this.showMessage = true;
}
}
Expand Down
4 changes: 2 additions & 2 deletions src/app/solver/basic/basic.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ export class BasicComponent implements OnInit {

ngOnClickDot(operator) {
this.operator = operator;
console.info(operator)

this.setSymbol();
}

Expand Down Expand Up @@ -120,7 +120,7 @@ export class BasicComponent implements OnInit {
this.callSca();
break;
default:
console.log('Without operator!');
{}
break;
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ if (environment.production) {
}

platformBrowserDynamic().bootstrapModule(AppModule)
.catch(err => console.error(err));
.catch(err => {});