35 lines
648 B
TypeScript
35 lines
648 B
TypeScript
import ClassName from "../container/ClassName";
|
|
import { Injectable } from "../container/Injectable";
|
|
import Log from "./Log";
|
|
import { InjectionKey } from "vue";
|
|
|
|
@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()
|
|
}
|
|
|
|
getCounter() {
|
|
return Log.getCounter()
|
|
}
|
|
|
|
getTime() {
|
|
return Log.getTime()
|
|
}
|
|
}
|
|
|
|
export const LoggerKey = Symbol() as InjectionKey<Logger>;
|