Commit c256cbaaadf2859a34394abbbe156766f7bbdc54
1 parent
0ac029f514
Exists in
master
DEBUG on transport.send
Showing 1 changed file with 1 additions and 1 deletions Side-by-side Diff
lib/transport.js
... | ... | @@ -114,7 +114,7 @@ async function send(partner, msg) { |
114 | 114 | if (!partner) return; |
115 | 115 | |
116 | 116 | if (typeof msg !== 'string') { |
117 | - logger.warn('Message to send is not a string, ignoring message'); | |
117 | + logger.warn('Message to send is not a string, ignoring message', { msg_type: typeof msg, msg }); | |
118 | 118 | return; |
119 | 119 | } |
120 | 120 |