Disable info logging on production

This commit is contained in:
Ajay Ramachandran
2021-07-15 16:06:04 -04:00
parent 83a77dfc74
commit ce2aa67832

View File

@@ -40,7 +40,7 @@ class Logger {
private _settings = { private _settings = {
ERROR: true, ERROR: true,
WARN: true, WARN: true,
INFO: true, INFO: false,
DEBUG: false, DEBUG: false,
}; };