summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--HTTP/RateLimit.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/HTTP/RateLimit.hs b/HTTP/RateLimit.hs
index b90d282..e58b543 100644
--- a/HTTP/RateLimit.hs
+++ b/HTTP/RateLimit.hs
@@ -407,7 +407,7 @@ checkRequestRate cfg storedir ratelimiter logger intervalsecs = do
else freespace `div` maxstoredthismonth `div` 2
logStdout logger $ unlines
[ "rate limit check"
- , " free disk space:" ++ showBytes freespace
+ , " free disk space: " ++ showBytes freespace
, " number of requests since last check: " ++ show n
, " estimated max incoming data in the next month: " ++ showBytes maxstoredthismonth
, " estimate min " ++ show estimate ++ " months to fill half of disk"