summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthew Pickering <matthewtpickering@gmail.com>2021-09-17 15:28:25 +0100
committerMarge Bot <ben+marge-bot@smart-cactus.org>2021-09-18 12:04:41 -0400
commitd99fc2508204c59cfc83d8a68718cf930ccc74b2 (patch)
tree4bd3dc4266a372af0c036bf33ed6a2de64d630bd
parent446ca8b9897d3b76b35dc2bd593592d2413b9620 (diff)
downloadhaskell-d99fc2508204c59cfc83d8a68718cf930ccc74b2.tar.gz
hadrian: Disable verbose timing information
Before the output contain a lot of verbose information about timining various things to do with shake which wasn't so useful for developers. ``` shakeArgsWith 0.000s 0% Function shake 0.010s 0% Database read 0.323s 12% === With database 0.031s 1% Running rules 2.301s 86% ========================= Pool finished (1786 threads, 5 max) 0.003s 0% Cleanup 0.000s 0% Total 2.669s 100% Build completed in 2.67s ``` Now the output just contains the last line ``` Build completed in 2.67s ``` Ticket #20381
-rw-r--r--hadrian/src/Main.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/hadrian/src/Main.hs b/hadrian/src/Main.hs
index db808f5a57..25ea219404 100644
--- a/hadrian/src/Main.hs
+++ b/hadrian/src/Main.hs
@@ -50,7 +50,7 @@ main = do
, shakeFiles = buildRoot -/- Base.shakeFilesDir
, shakeProgress = progressSimple
, shakeRebuild = rebuild
- , shakeTimings = True
+ , shakeTimings = False
, shakeColor = shakeColor
, shakeExtra = extra