smartlog-interfaces/ts/index.ts
2018-03-01 23:31:47 +01:00

23 lines
558 B
TypeScript

export type TLogLevel = 'error' | 'warn' | 'info' | 'verbose' | 'debug' | 'silly';
export type TEnvironment = 'local' | 'test' | 'staging' | 'production';
export type TRuntime = 'node' | 'browser';
export interface ILogContext {
zone?: string;
company?: string;
companyunit?: string;
containerName?: string;
environment: TEnvironment;
runtime: TRuntime;
}
export interface ILogPackage {
logContext: ILogContext;
logLevel: TLogLevel;
message: string;
}
export interface ILogDestination {
handleLog: (logPackage: ILogPackage) => void;
}