File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -146,10 +146,10 @@ change the behavior of the debug logging:
146146| Name | Purpose |
147147| -----------| -------------------------------------------------|
148148| ` DEBUG ` | Enables/disables specific debugging namespaces. |
149+ | ` DEBUG_HIDE_DATE ` | Hide date from debug output (non-TTY). |
149150| ` DEBUG_COLORS ` | Whether or not to use colors in the debug output. |
150- | ` DEBUG_DEPTH ` | Object inspection depth. |
151+ | ` DEBUG_DEPTH ` | Object inspection depth. |
151152| ` DEBUG_SHOW_HIDDEN ` | Shows hidden properties on inspected objects. |
152- | ` DEBUG_HIDE_TTY_DATE ` | Hide date from debug output on TTY. |
153153
154154
155155__ Note:__ The environment variables beginning with ` DEBUG_ ` end up being
Original file line number Diff line number Diff line change @@ -120,7 +120,7 @@ function formatArgs(args) {
120120}
121121
122122function getDate ( ) {
123- if ( exports . inspectOpts . hideTtyDate ) {
123+ if ( exports . inspectOpts . hideDate ) {
124124 return '' ;
125125 } else {
126126 return new Date ( ) . toISOString ( ) + ' ' ;
You can’t perform that action at this time.
0 commit comments