Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions lib/preboot/require.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@
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);

Check warning on line 22 in lib/preboot/require.js

View workflow job for this annotation

GitHub Actions / ci (20.x)

Unexpected console statement

Check warning on line 22 in lib/preboot/require.js

View workflow job for this annotation

GitHub Actions / ci (22.x)

Unexpected console statement

Check warning on line 22 in lib/preboot/require.js

View workflow job for this annotation

GitHub Actions / ci (18.x)

Unexpected console statement
console.warn('Application startup will continue...');

Check warning on line 23 in lib/preboot/require.js

View workflow job for this annotation

GitHub Actions / ci (20.x)

Unexpected console statement

Check warning on line 23 in lib/preboot/require.js

View workflow job for this annotation

GitHub Actions / ci (22.x)

Unexpected console statement

Check warning on line 23 in lib/preboot/require.js

View workflow job for this annotation

GitHub Actions / ci (18.x)

Unexpected console statement
return callback();
}
bootable(app, options, callback);
Expand Down
Loading