import * as logger from 'pinusmod-logger'; import { Application } from '../application'; /** * Configure pinus logger */ export function configure(app: Application, filename: string) { let serverId = app.getServerId(); let base = app.getBase(); logger.configure(filename, {serverId: serverId, base: base}); }