24 lines
442 B
TypeScript
24 lines
442 B
TypeScript
import ClassName from "../container/ClassName";
|
|
import { Injectable } from "../container/Injectable";
|
|
import Log from "./Log";
|
|
|
|
@Injectable()
|
|
@ClassName('Logger')
|
|
export default class Logger {
|
|
info(...o: any): void {
|
|
return Log.info(...o);
|
|
}
|
|
|
|
warn(...o: any): void {
|
|
return Log.warn(...o);
|
|
}
|
|
|
|
error(...o: any): void {
|
|
return Log.error(...o);
|
|
}
|
|
|
|
debug() {
|
|
return Log.debug()
|
|
}
|
|
}
|