diff --git a/bin/server.js b/bin/server.js index 9306d43..fb4f5d7 100644 --- a/bin/server.js +++ b/bin/server.js @@ -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); });