From dc4edd59c52a76131dfb7530a0db46fcdd2be71f Mon Sep 17 00:00:00 2001
From: Matthew Pickering <matthewtpickering@gmail.com>
Date: Fri, 17 Sep 2021 15:28:25 +0100
Subject: [PATCH] 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
---
 hadrian/src/Main.hs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/hadrian/src/Main.hs b/hadrian/src/Main.hs
index db808f5a57cf..25ea219404a5 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
 
-- 
GitLab