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) => {