Skip to content
This repository was archived by the owner on Dec 14, 2023. It is now read-only.

Commit 8f80316

Browse files
Stringify the email-notification res before logging
1 parent e03380f commit 8f80316

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/controllers/dojo/submit.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ module.exports = function (args, done) {
8282
seneca.log.warn('submit-dojo', err);
8383
return cb(err);
8484
}
85-
seneca.log.warn('submit-dojo', res);
85+
seneca.log.warn('submit-dojo', JSON.stringify(res));
8686
cb(null, savedDojo);
8787
});
8888
} else {

0 commit comments

Comments
 (0)