added a logger class

This commit is contained in:
mic 2024-08-19 17:29:48 +02:00
parent 774b60d7b8
commit a25df4281e

43
js/mzta-logger.js Normal file
View file

@ -0,0 +1,43 @@
/*
* ThunderAI [https://micz.it/thunderbird-addon-thunderai/]
* Copyright (C) 2024 Mic (m@micz.it)
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
export class taLogger {
do_debug = false;
prefix = "";
constructor(prefix, do_debug) {
this.do_debug = do_debug;
this.prefix = "[ThunderAI Logger |" + prefix + "] ";
}
log(msg, do_debug = -1) {
if(do_debug !== -1) this.do_debug = do_debug;
if(this.do_debug === true) console.log(this.prefix + msg);
}
error(msg, do_debug = -1) {
if(do_debug !== -1) this.do_debug = do_debug;
if(this.do_debug === true) console.error(this.prefix + msg);
}
warn(msg, do_debug = -1) {
if(do_debug !== -1) this.do_debug = do_debug;
if(this.do_debug === true) console.warn(this.prefix + msg);
}
};