import { ILogger } from './ILogger'; /** * Define the Logger Factory required on the * framework to customize the logging. */ export interface ILoggerFactory { getLogger(namespace: string): ILogger; } //# sourceMappingURL=ILoggerFactory.d.ts.map