initial shutdown functionality

This commit is contained in:
Bojan Kucera 2025-06-07 10:13:41 -04:00
parent 0f510bfa33
commit 8d0da5cf5c
4 changed files with 315 additions and 4 deletions

View file

@ -5,7 +5,15 @@
*/
// Core logger classes and functions
export { Logger, createLogger, getLogger } from './logger';
export {
Logger,
createLogger,
getLogger,
GracefulShutdown,
onShutdown,
setShutdownTimeout,
initiateShutdown
} from './logger';
// Type definitions
export type { LogLevel, LogContext, LogMetadata } from './types';