Disable console.log

This commit is contained in:
Lauri Ojansivu 2021-11-11 19:12:25 +02:00
parent 0991e54c22
commit ea01c5c1b9
3 changed files with 5 additions and 5 deletions

View file

@ -33,11 +33,11 @@ export class CardSearchPagedComponent extends BlazeComponent {
that.hasResults.set(false);
that.serverError.set(true);
// eslint-disable-next-line no-console
console.log('Error.reason:', error.reason);
//console.log('Error.reason:', error.reason);
// eslint-disable-next-line no-console
console.log('Error.message:', error.message);
//console.log('Error.message:', error.message);
// eslint-disable-next-line no-console
console.log('Error.stack:', error.stack);
//console.log('Error.stack:', error.stack);
},
};
}

View file

@ -514,6 +514,6 @@ export class Query {
this.queryParams.text = text;
// eslint-disable-next-line no-console
console.log('queryParams:', this.queryParams);
//console.log('queryParams:', this.queryParams);
}
}

View file

@ -443,7 +443,7 @@ function buildSelector(queryParams) {
}
// eslint-disable-next-line no-console
console.log('cards selector:', JSON.stringify(selector, null, 2));
//console.log('cards selector:', JSON.stringify(selector, null, 2));
const query = new Query();
query.selector = selector;