We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a30c08e commit 5edc9c9Copy full SHA for 5edc9c9
bin/run.js
@@ -4,8 +4,8 @@
4
5
import {execute, settings} from '@oclif/core'
6
7
-// Enable performance tracking when DEBUG=oclif:perf or DEBUG=* is set
8
-if (process.env.DEBUG?.includes('oclif:perf') || process.env.DEBUG === '*') {
+// Enable performance tracking when oclif:perf is specified in DEBUG
+if (process.env.DEBUG?.includes('oclif:perf') || process.env.DEBUG === 'oclif:*' || process.env.DEBUG === '*') {
9
settings.performanceEnabled = true
10
}
11
0 commit comments