diff options
author | zimbatm <zimbatm@zimbatm.com> | 2019-09-18 11:40:11 +0000 |
---|---|---|
committer | zimbatm <zimbatm@zimbatm.com> | 2019-09-18 23:23:21 +0200 |
commit | 619cc4af855fab7b0400586a4fd40745b23e72ad (patch) | |
tree | 0a8779936f128eccc7f0941ccbcd595314522324 /src/libexpr/function-trace.hh | |
parent | c6a0f4c393c9704821bda973db1bf4c449354b32 (diff) |
function-trace: always show the trace
If the user invokes nix with --trace-function-calls it means that they
want to see the trace.
Diffstat (limited to 'src/libexpr/function-trace.hh')
-rw-r--r-- | src/libexpr/function-trace.hh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libexpr/function-trace.hh b/src/libexpr/function-trace.hh index 8234b7603..8b0ec848d 100644 --- a/src/libexpr/function-trace.hh +++ b/src/libexpr/function-trace.hh @@ -12,13 +12,13 @@ struct FunctionCallTrace FunctionCallTrace(const Pos & pos) : pos(pos) { auto duration = std::chrono::high_resolution_clock::now().time_since_epoch(); auto ns = std::chrono::duration_cast<std::chrono::nanoseconds>(duration); - vomit("function-trace entered %1% at %2%", pos, ns.count()); + printMsg(lvlInfo, "function-trace entered %1% at %2%", pos, ns.count()); } ~FunctionCallTrace() { auto duration = std::chrono::high_resolution_clock::now().time_since_epoch(); auto ns = std::chrono::duration_cast<std::chrono::nanoseconds>(duration); - vomit("function-trace exited %1% at %2%", pos, ns.count()); + printMsg(lvlInfo, "function-trace exited %1% at %2%", pos, ns.count()); } }; } |