@nokari/logging
v0.0.1
Published
Extensible logging plugin for Nokari.
Downloads
3
Readme
@nokari/logging
Extensible logging plugin for Nokari.
@nokari/logging is a plugin module for @nokari/core that
provides a powerful and flexible logging system. It allows plugins and internal
components to emit debug, info, warning, and error logs through a centralized logger interface.
Creating Your Own Logger
Implement the Logger interface:
export interface Logger {
debug(message: string): void;
info(message: string): void;
warn(message: string): void;
error(message: string): void;
}Then inject it via the plugin.
License
This project is licensed under the MIT License.
