logger.debug(config) at startup

This commit is contained in:
Sean McArthur 2014-02-11 15:15:34 -08:00
Родитель ba191fcddb
Коммит 0d72fc28d1
1 изменённых файлов: 2 добавлений и 0 удалений

Просмотреть файл

@ -2,9 +2,11 @@
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
const config = require('../lib/config').root();
const logger = require('../lib/logging').getLogger('fxa.bin.server');
const server = require('../lib/server').create();
logger.debug('Starting with config:', JSON.stringify(config, null, 2));
server.start(function() {
logger.info('Server started at:', server.info.uri);
});