electron-log icon indicating copy to clipboard operation
electron-log copied to clipboard

`undefined` is logged as `null`

Open stefansundin opened this issue 1 year ago • 1 comments

Hello,

I tried to search and see if this is intended/documented, but I couldn't find any issue that mentioned it.

When I log undefined, it comes out as null like this:

const log = require('electron-log');

console.log(undefined);
console.log = log.log;
console.log(undefined);

Output in my terminal:

undefined 17:08:28.211 › null

This happens in both 4.4.8 and 5.0.0-beta.16.

Any explanation for this or is it a bug? It threw me for a real loop trying to debug something. 😵‍💫

I made this electron fiddle if you want to test it easily: https://gist.github.com/stefansundin/18ab5af281e820ce15927e126df8712d

Thanks!

stefansundin avatar Feb 05 '23 01:02 stefansundin