From a25df4281e847241f9159787adc58ef347aff326 Mon Sep 17 00:00:00 2001 From: mic Date: Mon, 19 Aug 2024 17:29:48 +0200 Subject: [PATCH] added a logger class --- js/mzta-logger.js | 43 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 js/mzta-logger.js diff --git a/js/mzta-logger.js b/js/mzta-logger.js new file mode 100644 index 00000000..5812d5f5 --- /dev/null +++ b/js/mzta-logger.js @@ -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 . + */ + +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); + } +}; \ No newline at end of file