From 66aac3ff92f540c44bfa0ae1d8d7767bfc48841f Mon Sep 17 00:00:00 2001 From: Christiane Ruetten Date: Tue, 3 May 2016 18:53:54 +0200 Subject: [PATCH] Logging tags database name to debug log --- components/taxonomy/src/tag_storage.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/taxonomy/src/tag_storage.rs b/components/taxonomy/src/tag_storage.rs index f77557f5..a2f66376 100644 --- a/components/taxonomy/src/tag_storage.rs +++ b/components/taxonomy/src/tag_storage.rs @@ -48,7 +48,7 @@ impl TagStorage { return; } - info!("Opening taxonomy tags database at {}", self.path.display()); + debug!("Opening taxonomy tags database at {}", self.path.display()); let db = Connection::open(self.path.clone()).unwrap_or_else(|err| { panic!("Unable to open taxonomy tags database: {}", err); });