removed useless param from methods

This commit is contained in:
mic 2024-08-19 17:45:27 +02:00
parent 48ceea085d
commit 41d3c167b6

View file

@ -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);
}
};