Skip to content

Commit 0ae10e0

Browse files
committed
Don't override existing DEBUG env variable.
1 parent 7c43b1a commit 0ae10e0

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

bin/lib/start.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,9 @@ function bin (argv, server) {
6363
argv.live = !argv.noLive
6464

6565
// Set up debug environment
66-
process.env.DEBUG = argv.verbose ? 'solid:*' : false
66+
if (argv.verbose) {
67+
process.env.DEBUG = 'solid:*'
68+
}
6769

6870
// Set up port
6971
argv.port = argv.port || 3456

0 commit comments

Comments
 (0)