removed useless param from methods
This commit is contained in:
parent
48ceea085d
commit
41d3c167b6
1 changed files with 2 additions and 2 deletions
|
|
@ -31,11 +31,11 @@ export class taLogger {
|
|||
if(this.do_debug === true) console.log(this.prefix + msg);
|
||||
}
|
||||
|
||||
error(msg, do_debug = -1) {
|
||||
error(msg) {
|
||||
console.error(this.prefix + msg);
|
||||
}
|
||||
|
||||
warn(msg, do_debug = -1) {
|
||||
warn(msg) {
|
||||
console.warn(this.prefix + msg);
|
||||
}
|
||||
};
|
||||
Loading…
Reference in a new issue