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 75e1762 commit f6b27e3Copy full SHA for f6b27e3
src/common/informixHelper.js
@@ -104,15 +104,15 @@ function queryInformix (query) {
104
try {
105
dbConnection = informix.openSync(connectionString)
106
} catch (ex) {
107
- logger.error(`Informix connection error: ${ex}`)
+ logger.error(`Informix connection error: ${JSON.stringify(ex)}`)
108
return null
109
}
110
111
let result = null
112
113
result = dbConnection.querySync(query)
114
115
- logger.error(`Informix query error: ${ex}`)
+ logger.error(`Informix query error: ${JSON.stringify(ex)}`)
116
117
118
return result
0 commit comments