From: Ian Jackson Date: Tue, 4 Aug 2020 16:48:50 +0000 (+0100) Subject: history reporting: Print debug for cache misses X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=1a540dab03f0b7a75cc4445d86284ca563fcc354;p=osstest.git history reporting: Print debug for cache misses Signed-off-by: Ian Jackson --- diff --git a/Osstest/HistoryReport.pm b/Osstest/HistoryReport.pm index b576c02..b593f20 100644 --- a/Osstest/HistoryReport.pm +++ b/Osstest/HistoryReport.pm @@ -155,6 +155,9 @@ sub cache_row_lookup_prep ($) { if ($cacherow) { $$jrr = $cacherow; $rows_hit++; + } else { + print ::DEBUG "CACHE MISS ", + (join " ", map { $$jrr->{$_} } @key_cols), "\n"; } }