From 30fb9cdfbd68614111baa3161fb5950d3c87dc79 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim=20Vis=C3=A9e?= Date: Sat, 2 Dec 2023 21:29:00 +0100 Subject: [PATCH] Promote collection create/update/delete debug messages to info (#3119) --- lib/storage/src/content_manager/toc/collection_meta_ops.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/storage/src/content_manager/toc/collection_meta_ops.rs b/lib/storage/src/content_manager/toc/collection_meta_ops.rs index 985048da36..a0478e0084 100644 --- a/lib/storage/src/content_manager/toc/collection_meta_ops.rs +++ b/lib/storage/src/content_manager/toc/collection_meta_ops.rs @@ -30,7 +30,7 @@ impl TableOfContent { ) -> Result { match operation { CollectionMetaOperations::CreateCollection(mut operation) => { - log::debug!("Creating collection {}", operation.collection_name); + log::info!("Creating collection {}", operation.collection_name); let distribution = match operation.take_distribution() { None => match operation .create_collection @@ -53,11 +53,11 @@ impl TableOfContent { .await } CollectionMetaOperations::UpdateCollection(operation) => { - log::debug!("Updating collection {}", operation.collection_name); + log::info!("Updating collection {}", operation.collection_name); self.update_collection(operation).await } CollectionMetaOperations::DeleteCollection(operation) => { - log::debug!("Deleting collection {}", operation.0); + log::info!("Deleting collection {}", operation.0); self.delete_collection(&operation.0).await } CollectionMetaOperations::ChangeAliases(operation) => {