From 543d8a5942f503f5e49eecbf7e4e7a039472e9ea Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Thu, 24 Oct 2013 02:20:54 +0200 Subject: [PATCH] Don't require NIX_SHOW_STATS for NIX_COUNT_CALLS --- src/libexpr/eval.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/src/libexpr/eval.cc b/src/libexpr/eval.cc index 300e184328..ae29431578 100644 --- a/src/libexpr/eval.cc +++ b/src/libexpr/eval.cc @@ -1275,6 +1275,7 @@ void EvalState::printStats() printMsg(v, format(" number of function calls: %1%") % nrFunctionCalls); if (countCalls) { + v = lvlInfo; printMsg(v, format("calls to %1% primops:") % primOpCalls.size()); typedef std::multimap PrimOpCalls_;