We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7c43b1a commit 0ae10e0Copy full SHA for 0ae10e0
bin/lib/start.js
@@ -63,7 +63,9 @@ function bin (argv, server) {
63
argv.live = !argv.noLive
64
65
// Set up debug environment
66
- process.env.DEBUG = argv.verbose ? 'solid:*' : false
+ if (argv.verbose) {
67
+ process.env.DEBUG = 'solid:*'
68
+ }
69
70
// Set up port
71
argv.port = argv.port || 3456
0 commit comments