diff --git a/src/app.js b/src/app.js index 6c402f7f..48d2250c 100644 --- a/src/app.js +++ b/src/app.js @@ -148,6 +148,7 @@ async function build(opts = {}) { } } catch (err) { globals.logger.error(`CONFIG: Error initiating host info: ${err}`); + globals.logger.error(`CONFIG: Error initiating host info, stack trace: ${err.stack}`); } // Set up REST server, if enabled diff --git a/src/globals.js b/src/globals.js index ed68aedd..1151f194 100644 --- a/src/globals.js +++ b/src/globals.js @@ -606,6 +606,7 @@ class Settings { return hostInfo; } catch (err) { this.logger.error(`CONFIG: Getting host info: ${err}`); + this.logger.error(`CONFIG: Getting host info, stack trace: ${err.stack}`); return null; } }