diff options
Diffstat (limited to 'src/libstore/exec.cc')
-rw-r--r-- | src/libstore/exec.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstore/exec.cc b/src/libstore/exec.cc index 2adf03841c4f..b25423b4449a 100644 --- a/src/libstore/exec.cc +++ b/src/libstore/exec.cc @@ -22,7 +22,7 @@ void runProgram(const string & program, { /* Create a log file. */ string logCommand = - verbosity >= lvlDebug + verbosity >= buildVerbosity ? "tee " + logFileName + " >&2" : "cat > " + logFileName; /* !!! auto-pclose on exit */ |