Skip to content

Commit f14391f

Browse files
Change log level
1 parent 9e433ce commit f14391f

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/Storages/MergeTree/MergeTreeBackgroundExecutor.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -151,9 +151,9 @@ void printExceptionWithRespectToAbort(Poco::Logger * log)
151151
{
152152
NOEXCEPT_SCOPE({
153153
ALLOW_ALLOCATIONS_IN_SCOPE;
154-
/// Cancelled merging parts is not an error - log as info.
154+
/// Cancelled merging parts is not an error - log normally.
155155
if (e.code() == ErrorCodes::ABORTED)
156-
LOG_INFO(log, getExceptionMessageAndPattern(e, /* with_stacktrace */ false));
156+
LOG_DEBUG(log, getExceptionMessageAndPattern(e, /* with_stacktrace */ false));
157157
else
158158
tryLogCurrentException(__PRETTY_FUNCTION__);
159159
});

0 commit comments

Comments
 (0)