mirror of
https://github.com/FrankerFaceZ/FrankerFaceZ.git
synced 2025-10-11 05:31:56 +00:00
4.12.4
* 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:
parent
38c87840af
commit
ebb954e6c1
5 changed files with 10 additions and 5 deletions
|
@ -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;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue