diff options
Diffstat (limited to 'guix-qa-frontpage/database.scm')
-rw-r--r-- | guix-qa-frontpage/database.scm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/guix-qa-frontpage/database.scm b/guix-qa-frontpage/database.scm index ea9ad96..2ff3107 100644 --- a/guix-qa-frontpage/database.scm +++ b/guix-qa-frontpage/database.scm @@ -375,7 +375,9 @@ SELECT data, timestamp FROM cache WHERE key = :key AND version = :version" 'noval (call-with-input-string data read)))))))))) - (when (eq? cached-values 'noval) + ;; Don't log cache misses for now + (when (and #f + (eq? cached-values 'noval)) (simple-format (current-error-port) "cache miss: ~A\n" string-key)) |