remove lingering reference to requestId in base log method

This commit is contained in:
Kegan Myers 2020-04-13 07:39:46 -05:00
parent 44b90adbc3
commit 47de84dfb2
1 changed files with 1 additions and 1 deletions

View File

@ -4,7 +4,7 @@ module.exports = {};
const log = ({ time, ...args }) => {
console.log(
JSON.stringify({ time: new Date().toISOString(), requestId, ...args }),
JSON.stringify({ time: new Date().toISOString(), ...args }),
);
};