aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/libmain/loggers.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libmain/loggers.cc b/src/libmain/loggers.cc
index 8c3c4e355..46438280a 100644
--- a/src/libmain/loggers.cc
+++ b/src/libmain/loggers.cc
@@ -7,7 +7,7 @@ namespace nix {
LogFormat defaultLogFormat = LogFormat::raw;
LogFormat parseLogFormat(const std::string & logFormatStr) {
- if (logFormatStr == "raw" || getEnv("NIX_GET_COMPLETIONS"))
+ if (logFormatStr == "raw")
return LogFormat::raw;
else if (logFormatStr == "raw-with-logs")
return LogFormat::rawWithLogs;