Commit e68d4d1d9b804418b19cc79e1036f713f6428acd

Authored by Adhidarma Hadiwinoto
1 parent 8ce5a6910f
Exists in master

ESLINT

Showing 1 changed file with 3 additions and 1 deletions Side-by-side Diff

... ... @@ -31,7 +31,9 @@ ${msg.trim()}
31 31 return;
32 32 }
33 33  
34   - logger.info('Writing outbox', { to: destination, msg: msg.trim(), msgLength: msg.trim().length, filename });
  34 + logger.info('Writing outbox', {
  35 + to: destination, msg: msg.trim(), msgLength: msg.trim().length, filename,
  36 + });
35 37 try {
36 38 fs.promises.writeFile(filename, msgFileContent, { mode: 0o660 });
37 39 } catch (e) {