diff options
author | Alexander Foremny <aforemny@posteo.de> | 2023-12-07 03:55:45 +0100 |
---|---|---|
committer | Alexander Foremny <aforemny@posteo.de> | 2023-12-07 03:55:47 +0100 |
commit | 3c6e62b75293b6625509ade3c278fc2d4d147c30 (patch) | |
tree | b33f76c2634a771879f9178cff8e5335e43d2f43 /app/Debug.hs | |
parent | a5dde0c6e1c1f54a1660f6c2345277927beef30f (diff) |
chore: increase performance by caching everything
Initial cache generation is slower, as we are losing out on parallelism.
Diffstat (limited to 'app/Debug.hs')
-rw-r--r-- | app/Debug.hs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/app/Debug.hs b/app/Debug.hs index c6549a6..6ad9480 100644 --- a/app/Debug.hs +++ b/app/Debug.hs @@ -1,4 +1,7 @@ -module Debug where +module Debug + ( debug, + ) +where import Debug.Trace (trace) import Text.Printf (printf) |