We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d30df56 commit 3396b01Copy full SHA for 3396b01
src/mqtt-sparkplug/index.js
@@ -35,7 +35,9 @@ const Redundancy = require('./redundancy')
35
const AutoTag = require('./auto-tag')
36
const { castSparkplugValue: castSparkplugValue } = require('./cast')
37
38
-process.on('uncaughtException', err => Log.log('Uncaught Exception:' + JSON.stringify(err)))
+process.on('uncaughtException', (err) =>
39
+ Log.log('Uncaught Exception: ' + err.message)
40
+)
41
42
const SparkplugNS = 'spBv1.0'
43
const DevicesList = [] // contains either EoN nodes or devices
0 commit comments