You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: modules/api-svc/src/lib/model/OutboundTransfersModel.js
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1473,7 +1473,7 @@ class OutboundTransfersModel {
1473
1473
log.isVerboseEnabled&&log.verbose(`Transfer model state machine transition completed in state: ${this.stateMachine.state}. Recursing to handle next transition.`);
1474
1474
returnthis.run();
1475
1475
}catch(err){
1476
-
log.error('error running outbound transfer model: ',err);
1476
+
log.isErrorEnabled&&log.push({ err }).error(`error running outbound transfer model: ${err?.message}`);
1477
1477
1478
1478
// as this function is recursive, we dont want to error the state machine multiple times
0 commit comments