(message: string)
| 245 | return createTracingDecorator({ message, opts, level: LogLevel.Debug }); |
| 246 | } |
| 247 | export function errorDecorator(message: string): TraceDecoratorType { |
| 248 | return createTracingDecorator({ message, opts: DEFAULT_OPTS, level: LogLevel.Error }); |
| 249 | } |
| 250 | export function infoDecorator(message: string): TraceDecoratorType { |
| 251 | return createTracingDecorator({ message, opts: DEFAULT_OPTS, level: LogLevel.Info }); |
| 252 | } |
no test coverage detected