We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently we use log4js as the logger, but users may want to use other logging framework or implement logger themselves.
init
export interface Logger { trace(type: LogType, ...contents: unknown[]): void; debug(type: LogType, ...contents: unknown[]): void; info(type: LogType, ...contents: unknown[]): void; warn(type: LogType, ...contents: unknown[]): void; error(type: LogType, ...contents: unknown[]): void; }
LogType may include:
The text was updated successfully, but these errors were encountered:
Maybe after #102 we can make most of logging as optional listeners
Sorry, something went wrong.
No branches or pull requests
Currently we use log4js as the logger, but users may want to use other logging framework or implement logger themselves.
init
life cycle of the main thread.LogType may include:
The text was updated successfully, but these errors were encountered: