Clément Plantier
Clément Plantier
See my PR that fixes the issue: https://github.com/megahertz/electron-log/pull/330
Ok, no problem, I will close the PR and keep the change for myself.
What about macOS?
I had the same error, on my project it was somehow related to [vitest-fail-on-console](https://github.com/thomasbrodusch/vitest-fail-on-console). I fixed the issue by upgrading it from 0.5.1 to 0.6.3.
This library could call the original console method, as following: ```js console[methodName] = (...args) => { newMethod(...args); originalMethod(...args); } ``` That makes sense to me: the goal of this library...
Sharing ideas is part of the process. What if I have a great idea but no time nor capacities to implement it?
Hi @anwiednn, I think this may be a duplicate of #8861, don't you think?