with dist
This commit is contained in:
parent
05c65aad4d
commit
ddd716c0a0
64 changed files with 262892 additions and 1 deletions
18
dist/library/assets/ifc/helpers/log.d.ts
vendored
Normal file
18
dist/library/assets/ifc/helpers/log.d.ts
vendored
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
/**
|
||||
* Web-IFC Logging Helper
|
||||
* @module Logging
|
||||
*/
|
||||
export declare enum LogLevel {
|
||||
LOG_LEVEL_DEBUG = 1,
|
||||
LOG_LEVEL_WARN = 3,
|
||||
LOG_LEVEL_ERROR = 4,
|
||||
LOG_LEVEL_OFF = 6
|
||||
}
|
||||
export declare abstract class Log {
|
||||
private static logLevel;
|
||||
static setLogLevel(level: number): void;
|
||||
static log(msg: string, ...args: any[]): void;
|
||||
static debug(msg: string, ...args: any[]): void;
|
||||
static warn(msg: string, ...args: any[]): void;
|
||||
static error(msg: string, ...args: any[]): void;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue