aboutsummaryrefslogtreecommitdiff
path: root/src/globals.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/globals.rs')
-rw-r--r--src/globals.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/globals.rs b/src/globals.rs
index 3a661e4..0d71762 100644
--- a/src/globals.rs
+++ b/src/globals.rs
@@ -114,7 +114,7 @@ impl<'a> CacheEventHandler<'a> {
impl<'a> cache::EventHandler for CacheEventHandler<'a> {
fn block_fetched(&self, location: cache::CacheLocation) {
// TODO: need to snoop cache
- info!("[memory] [cache] {}: tag {:x} fetched", self.player, location.tag);
+ debug!("[memory] [cache] {}: tag {:x} fetched", self.player, location.tag);
self.updater.finish_tag(self.player, location.tag, location.index);
}