Skip to content

Commit

Permalink
chore: change log level
Browse files Browse the repository at this point in the history
  • Loading branch information
fengjiachun committed Mar 1, 2024
1 parent beb09c8 commit 922a1f0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/common/meta/src/ddl_manager.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ use std::sync::Arc;

use common_procedure::{watcher, Output, ProcedureId, ProcedureManagerRef, ProcedureWithId};
use common_telemetry::tracing_context::{FutureExt, TracingContext};
use common_telemetry::{info, tracing};
use common_telemetry::{debug, tracing};
use snafu::{ensure, OptionExt, ResultExt};
use store_api::storage::TableId;

Expand Down Expand Up @@ -545,7 +545,7 @@ impl ProcedureExecutor for DdlManager {
.attach(tracing::info_span!("DdlManager::submit_ddl_task"));
async move {
let cluster_id = ctx.cluster_id.unwrap_or_default();
info!("Submitting Ddl task: {:?}", request.task);
debug!("Submitting Ddl task: {:?}", request.task);
match request.task {
CreateTable(create_table_task) => {
handle_create_table_task(self, cluster_id, create_table_task).await
Expand Down

0 comments on commit 922a1f0

Please sign in to comment.