Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[mod]
default-output-fn
: omit "?" location info
Change intended to reduce unhelpful noise in output Before this commit: 2024-08-30T07:34:40.806Z MyHostName INFO [my.ns:126] - My message ; Have ns, line 2024-08-30T07:34:40.806Z MyHostName INFO [my.ns:?] - My message ; Have ns only 2024-08-30T07:34:40.806Z MyHostName INFO [?:?] - My message ; Have neither After this commit: 2024-08-30T07:34:40.806Z MyHostName INFO [my.ns:126] - My message ; Have ns, line (unchanged) 2024-08-30T07:34:40.806Z MyHostName INFO [my.ns] - My message ; Have ns only (omit "?") 2024-08-30T07:34:40.806Z MyHostName INFO - My message ; Have neither (omit "[?:?]")
- Loading branch information