UNPKG

pinusmod

Version:

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

14 lines (13 loc) 387 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.configure = void 0; const logger = require("pinusmod-logger"); /** * Configure pinus logger */ function configure(app, filename) { let serverId = app.getServerId(); let base = app.getBase(); logger.configure(filename, { serverId: serverId, base: base }); } exports.configure = configure;