Skip to content

Commit

Permalink
fix: Make InfluxDB debug msgs during startup more informative
Browse files Browse the repository at this point in the history
Fixes #596
  • Loading branch information
mountaindude committed Aug 21, 2023
1 parent 62cc7bf commit 212fc72
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/globals.js
Original file line number Diff line number Diff line change
Expand Up @@ -307,7 +307,9 @@ tagValuesLogEvent.push('engine_exe_version');
if (config.has('Butler-SOS.logEvents.tags') && config.get('Butler-SOS.logEvents.tags') !== null) {
config.get('Butler-SOS.logEvents.tags').forEach((entry) => {
logger.debug(
`CONFIG: Setting up new Influx database: Found log event tag in config file: ${entry}`
`CONFIG: Setting up new Influx database: Found log event tag in config file: ${JSON.stringify(
entry
)}`
);

tagValuesLogEvent.push(entry.tag);
Expand Down

0 comments on commit 212fc72

Please sign in to comment.