mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 09:32:06 +00:00
Fix log level
This commit is contained in:
parent
1c527e86aa
commit
cab2c160fe
@ -948,7 +948,7 @@ bool S3QueueFilesMetadata::ProcessingNodeHolder::remove(Coordination::Requests *
|
||||
catch (...)
|
||||
{
|
||||
ProfileEvents::increment(ProfileEvents::CannotRemoveEphemeralNode);
|
||||
LOG_TEST(log, "Failed to remove processing node for file {}: {}", path, getCurrentExceptionMessage(true));
|
||||
LOG_ERROR(log, "Failed to remove processing node for file {}: {}", path, getCurrentExceptionMessage(true));
|
||||
}
|
||||
return false;
|
||||
}
|
||||
@ -967,7 +967,7 @@ void S3QueueFilesMetadata::cleanupThreadFunc()
|
||||
}
|
||||
catch (...)
|
||||
{
|
||||
LOG_TEST(log, "Failed to cleanup nodes in zookeeper: {}", getCurrentExceptionMessage(true));
|
||||
LOG_ERROR(log, "Failed to cleanup nodes in zookeeper: {}", getCurrentExceptionMessage(true));
|
||||
}
|
||||
|
||||
if (shutdown)
|
||||
@ -1065,7 +1065,7 @@ void S3QueueFilesMetadata::cleanupThreadFuncImpl()
|
||||
}
|
||||
catch (...)
|
||||
{
|
||||
LOG_TEST(log, "Failed to fetch metadata for node {}: {}", node, getCurrentExceptionMessage(true));
|
||||
LOG_ERROR(log, "Failed to fetch metadata for node {}: {}", node, getCurrentExceptionMessage(true));
|
||||
}
|
||||
}
|
||||
|
||||
@ -1085,7 +1085,7 @@ void S3QueueFilesMetadata::cleanupThreadFuncImpl()
|
||||
}
|
||||
catch (...)
|
||||
{
|
||||
LOG_TEST(log, "Failed to fetch metadata for node {}: {}", path, getCurrentExceptionMessage(true));
|
||||
LOG_ERROR(log, "Failed to fetch metadata for node {}: {}", path, getCurrentExceptionMessage(true));
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -238,7 +238,7 @@ Chunk StorageS3QueueSource::generate()
|
||||
}
|
||||
catch (...)
|
||||
{
|
||||
LOG_TEST(log, "Failed to set file {} as failed: {}",
|
||||
LOG_ERROR(log, "Failed to set file {} as failed: {}",
|
||||
key_with_info->key, getCurrentExceptionMessage(true));
|
||||
}
|
||||
|
||||
@ -265,7 +265,7 @@ Chunk StorageS3QueueSource::generate()
|
||||
}
|
||||
catch (...)
|
||||
{
|
||||
LOG_TEST(log, "Failed to set file {} as failed: {}",
|
||||
LOG_ERROR(log, "Failed to set file {} as failed: {}",
|
||||
key_with_info->key, getCurrentExceptionMessage(true));
|
||||
}
|
||||
|
||||
|
@ -469,7 +469,7 @@ void StorageS3Queue::threadFunc()
|
||||
}
|
||||
catch (...)
|
||||
{
|
||||
LOG_TEST(log, "Failed to process data: {}", getCurrentExceptionMessage(true));
|
||||
LOG_ERROR(log, "Failed to process data: {}", getCurrentExceptionMessage(true));
|
||||
}
|
||||
|
||||
if (!shutdown_called)
|
||||
|
Loading…
Reference in New Issue
Block a user