smartlog/ts/smartlog.classes.logrouter.ts

14 lines
217 B
TypeScript
Raw Normal View History

2018-03-03 12:57:55 +00:00
import * as plugins from './smartlog.plugins'
import {
ILogDestination
} from 'smartlog-interfaces'
export class LogRouter {
logDestinations: ILogDestination[] = [];
constructor() {
}
addLogDestination
}