about summary refs log tree commit diff
path: root/src/libstore/globals.hh
diff options
context:
space:
mode:
authorEelco Dolstra <edolstra@gmail.com>2018-01-16T18·03+0100
committerEelco Dolstra <edolstra@gmail.com>2018-01-16T18·24+0100
commit75b9670df61b3e82e6d60a0572316fdacc9cbd91 (patch)
tree9548c656cbfba4234d2cb8e2e7f8ce4376c35cb2 /src/libstore/globals.hh
parentd4dcffd64349bb52ad5f1b184bee5cc7c2be73b4 (diff)
Make show-trace a config setting
Diffstat (limited to 'src/libstore/globals.hh')
-rw-r--r--src/libstore/globals.hh3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/libstore/globals.hh b/src/libstore/globals.hh
index 81bb24a4eb..1e50e2d13e 100644
--- a/src/libstore/globals.hh
+++ b/src/libstore/globals.hh
@@ -211,7 +211,8 @@ public:
     bool lockCPU;
 
     /* Whether to show a stack trace if Nix evaluation fails. */
-    bool showTrace = false;
+    Setting<bool> showTrace{this, false, "show-trace",
+        "Whether to show a stack trace on evaluation errors."};
 
     Setting<bool> enableNativeCode{this, false, "allow-unsafe-native-code-during-evaluation",
         "Whether builtin functions that allow executing native code should be enabled."};