From 062dc289790fb859e3660fb70cba140cff5d467c Mon Sep 17 00:00:00 2001 From: githubzilla Date: Fri, 7 Nov 2025 15:03:58 +0800 Subject: [PATCH] Remove debug log --- data_store_service_client.cpp | 1 - eloq_data_store_service/data_store_service.h | 3 --- 2 files changed, 4 deletions(-) diff --git a/data_store_service_client.cpp b/data_store_service_client.cpp index dfbf6ed..9f467a3 100644 --- a/data_store_service_client.cpp +++ b/data_store_service_client.cpp @@ -4229,7 +4229,6 @@ bool DataStoreServiceClient::InitPreBuiltTables() callback_data, &SyncCallback); callback_data->Wait(); - if (callback_data->Result().error_code() != remote::DataStoreError::NO_ERROR) { diff --git a/eloq_data_store_service/data_store_service.h b/eloq_data_store_service/data_store_service.h index 35bd337..6686b50 100644 --- a/eloq_data_store_service/data_store_service.h +++ b/eloq_data_store_service/data_store_service.h @@ -605,9 +605,6 @@ class DataStoreService : EloqDS::remote::DataStoreRpcService bool IsOwnerOfShard(uint32_t shard_id) const { - DLOG(INFO) << "IsOwnerOfShard check: shard_status=" - << static_cast(shard_status_.load()) << ", shard_id_=" - << shard_id_ << ", check_shard_id=" << shard_id; return shard_status_.load(std::memory_order_acquire) != DSShardStatus::Closed && shard_id_ == shard_id;