You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 11, 2026. It is now read-only.
It expects a LogEntry typed metadata value to be passed in. Historically this value has accepted a timestamp property with a JS Date value in it. You can see that internally it expects the timestamp to be a JavaScript Date as well. logging-bunyan passes in a JS Date as well.
The problem is that LogEntry type doesn't accept Date as a value for timestamp.
Consider the constructor for
Entry.It expects a
LogEntrytypedmetadatavalue to be passed in. Historically this value has accepted atimestampproperty with a JSDatevalue in it. You can see that internally it expects thetimestampto be a JavaScriptDateas well.logging-bunyanpasses in a JSDateas well.The problem is that
LogEntrytype doesn't acceptDateas a value fortimestamp.