diff --git a/lib/preboot/require.js b/lib/preboot/require.js index 15823a5..0f87353 100644 --- a/lib/preboot/require.js +++ b/lib/preboot/require.js @@ -19,6 +19,8 @@ module.exports = function (opts) { bootable = require(fullpath); } catch (ex) { // probably we want to throw an error here and halt the application? debug('warning Could not load preboot for %s', fullpath, ex.stack); + console.warn('Could not load preboot for %s', fullpath, ex.stack); + console.warn('Application startup will continue...'); return callback(); } bootable(app, options, callback);