UNPKG

omelop

Version:

[![Build Status](https://travis-ci.org/node-omelop/omelop.svg?branch=master)](https://travis-ci.org/node-omelop/omelop)

12 lines (10 loc) 319 B
import * as logger from 'omelop-logger'; import { Application } from '../application'; /** * Configure omelop logger */ export function configure(app: Application, filename: string) { let serverId = app.getServerId(); let base = app.getBase(); logger.configure(filename, { serverId: serverId, base: base }); }