[mirotalksfu] - add sentry

هذا الالتزام موجود في:
Miroslav Pejic
2022-02-21 17:07:03 +01:00
الأصل 59ebbcfcd2
التزام 5652d086cd
5 ملفات معدلة مع 53 إضافات و2 حذوفات

عرض الملف

@@ -9,9 +9,17 @@ module.exports = class Logger {
debug(msg, op = '') {
if (this.debugOn === false) return;
console.debug('[' + this.getDataTime() + '] [' + this.appName + '] ' + msg, op);
}
log(msg, op = '') {
console.log('[' + this.getDataTime() + '] [' + this.appName + '] ' + msg, op);
}
info(msg, op = '') {
console.info('[' + this.getDataTime() + '] [' + this.appName + '] ' + msg, op);
}
warn(msg, op = '') {
console.warn('[' + this.getDataTime() + '] [' + this.appName + '] ' + msg, op);
}