Something like this might do the trick: ``` const originalError = log.error.bind(log); log.error = (...args: unknown[]) => { console.error(...args); }; ```