-
-
Notifications
You must be signed in to change notification settings - Fork 73
Closed
Labels
bugSomething isn't workingSomething isn't working
Description
Describe the bug
TSLog writes null values as undefined. It severely threw off my troubleshooting of an unrelated bug in my project.
To Reproduce
Steps to reproduce the behavior:
const testObj = { true: true, false: false, null: null, undefined: undefined };
console.debug('Testing [console]', testObj);
log.debug('Testing [tslog]', testObj);Testing [console] {true: true, false: false, null: null, undefined: undefined}
index.js:81 2023-07-09 05:09:32.911 DEBUG TestComponent Testing [tslog] {
true: true,
false: false,
null: undefined,
undefined: undefined
}
Expected behavior
Correct values to be displayed when an object is logged
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working