BREAKING CHANGE(ILogPackage): added type and refactored properties
This commit is contained in:
parent
db528bd4c4
commit
250e854673
@ -1,3 +1,4 @@
|
|||||||
|
export type TLogType = 'log' | 'increment' | 'gauge' | 'error' | 'success';
|
||||||
export type TLogLevel = 'error' | 'warn' | 'info' | 'verbose' | 'debug' | 'silly';
|
export type TLogLevel = 'error' | 'warn' | 'info' | 'verbose' | 'debug' | 'silly';
|
||||||
export type TEnvironment = 'local' | 'test' | 'staging' | 'production';
|
export type TEnvironment = 'local' | 'test' | 'staging' | 'production';
|
||||||
export type TRuntime = 'node' | 'browser';
|
export type TRuntime = 'node' | 'browser';
|
||||||
@ -12,8 +13,9 @@ export interface ILogContext {
|
|||||||
}
|
}
|
||||||
|
|
||||||
export interface ILogPackage {
|
export interface ILogPackage {
|
||||||
logContext: ILogContext;
|
type: TLogType;
|
||||||
logLevel: TLogLevel;
|
context: ILogContext;
|
||||||
|
level: TLogLevel;
|
||||||
message: string;
|
message: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user