mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-26 17:41:59 +00:00
skip log empty message
This commit is contained in:
parent
6463863271
commit
b38ad8297c
@ -701,7 +701,9 @@ void DataPartStorageOnDiskBase::remove(
|
||||
if (file_name.starts_with(proj_dir_name))
|
||||
files_not_to_remove_for_projection.emplace(fs::path(file_name).filename());
|
||||
|
||||
LOG_DEBUG(log, "Will not remove files [{}] for projection {}", fmt::join(files_not_to_remove_for_projection, ", "), projection.name);
|
||||
if (!files_not_to_remove_for_projection.empty())
|
||||
LOG_DEBUG(
|
||||
log, "Will not remove files [{}] for projection {}", fmt::join(files_not_to_remove_for_projection, ", "), projection.name);
|
||||
|
||||
CanRemoveDescription proj_description
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user