File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ const informix = require('../common/informixWrapper')
3
3
const logger = require ( '../common/logger' )
4
4
5
5
async function updateInformix ( payload ) {
6
- logger . debug ( `Received payload at updateinformix stringify : ${ JSON . stringify ( payload ) } ` )
6
+ logger . debug ( `updateinformix received payload - stringify : ${ JSON . stringify ( payload ) } ` )
7
7
logger . debug ( '=====Starting to update informix with data:====' )
8
8
const operation = payload . payload . operation . toLowerCase ( )
9
9
console . log ( "Informix DML Operation :" , operation )
@@ -12,7 +12,7 @@ async function updateInformix (payload) {
12
12
let paramvalue = null
13
13
14
14
const columns = payload . payload . data
15
- logger . debug ( `Columns details at updateinformix : ${ columns } ` )
15
+ logger . debug ( `updateinformix columns details : ${ JSON . stringify ( columns ) } ` )
16
16
const primaryKey = payload . payload . Uniquecolumn
17
17
// Build SQL query
18
18
switch ( operation ) {
You can’t perform that action at this time.
0 commit comments