Skip to content

Commit c2739b3

Browse files
committed
include oclif:perf with oclif:*
1 parent b507b3a commit c2739b3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

bin/run.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44

55
import {execute, settings} from '@oclif/core'
66

7-
// Enable performance tracking when DEBUG=oclif:perf or DEBUG=* is set
8-
if (process.env.DEBUG?.includes('oclif:perf') || process.env.DEBUG === '*') {
7+
// Enable performance tracking when oclif:perf is specified in DEBUG
8+
if (process.env.DEBUG?.includes('oclif:perf') || process.env.DEBUG === 'oclif:*' || process.env.DEBUG === '*') {
99
settings.performanceEnabled = true
1010
}
1111

0 commit comments

Comments
 (0)