@nowarajs/logger
Version:
Type-safe logging library for Bun with advanced TypeScript body intersection, modular sink pattern, transform streams, and immutable API design.
14 lines (12 loc) • 574 B
JavaScript
// @bun
// source/enums/logger-error-keys.ts
var LOGGER_ERROR_KEYS = {
BEFORE_EXIT_CLOSE_ERROR: "nowarajs.logger.error.before_exit_close_error",
BEFORE_EXIT_FLUSH_ERROR: "nowarajs.logger.error.before_exit_flush_error",
NO_SINKS_PROVIDED: "nowarajs.logger.error.no_sinks_provided",
REGISTER_SINK_ERROR: "nowarajs.logger.error.register_sink_error",
SINK_ALREADY_ADDED: "nowarajs.logger.error.sink_already_added",
SINK_CLOSE_ERROR: "nowarajs.logger.error.sink_close_error",
SINK_LOG_ERROR: "nowarajs.logger.error.sink_log_error"
};
export { LOGGER_ERROR_KEYS };