1
0
Fork 0
mirror of https://github.com/FrankerFaceZ/FrankerFaceZ.git synced 2025-10-11 05:31:56 +00:00
* Fixed: The page visibility hook breaking due to a typo and stopping FFZ from fully initializing for users using other page visibility hooks.
* Fixed: The setting to hide bits UI not hiding the bits button in chat.
This commit is contained in:
SirStendec 2019-09-29 18:57:08 -04:00
parent 38c87840af
commit ebb954e6c1
5 changed files with 10 additions and 5 deletions

View file

@ -44,6 +44,10 @@ export class Logger {
return this.invoke(Logger.WARN, args);
}
warning(...args) {
return this.invoke(Logger.WARN, args);
}
error(...args) {
return this.invoke(Logger.ERROR, args);
}
@ -115,6 +119,7 @@ Logger.DEFAULT_LEVEL = 2;
Logger.DEBUG = 1;
Logger.INFO = 2;
Logger.WARN = 4;
Logger.WARNING = 4;
Logger.ERROR = 8;
Logger.OFF = 99;