interface LoggerService { debug(message: any, ...optionalParams: any[]): any; error(message: any, ...optionalParams: any[]): any; fatal(message: any, ...optionalParams: any[]): any; log(message: any, ...optionalParams: any[]): any; verbose(message: any, ...optionalParams: any[]): any; warn(message: any, ...optionalParams: any[]): any;} Methods
Optional
debug
debug(message: any, ...optionalParams: any[]): any Parameters
- message: any
- ...optionalParams: any[]
Returns any
error
error(message: any, ...optionalParams: any[]): any Parameters
- message: any
- ...optionalParams: any[]
Returns any
Optional
fatal
fatal(message: any, ...optionalParams: any[]): any Parameters
- message: any
- ...optionalParams: any[]
Returns any
log
log(message: any, ...optionalParams: any[]): any Parameters
- message: any
- ...optionalParams: any[]
Returns any
Optional
verbose
verbose(message: any, ...optionalParams: any[]): any Parameters
- message: any
- ...optionalParams: any[]
Returns any
warn
warn(message: any, ...optionalParams: any[]): any Parameters
- message: any
- ...optionalParams: any[]
Returns any
Write a 'debug' level log.