Skip to content

Commit

Permalink
Merge pull request #18228 from vbotbuildovich/backport-pr-17828-v24.1…
Browse files Browse the repository at this point in the history
….x-898

[v24.1.x] CORE-1752: cst: Downgrade error logs to debug
  • Loading branch information
piyushredpanda committed May 3, 2024
2 parents 21d540c + 0d5bea8 commit 1d5cbc3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/v/cloud_storage/segment_chunk_api.cc
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ ss::future<segment_chunk::handle_t> segment_chunks::hydrate_chunk(
}
} catch (const std::exception& ex) {
vlog(
_ctxlog.error,
_ctxlog.debug,
"Failed to hydrate chunk start {}, error: {}",
chunk_start,
ex.what());
Expand Down
2 changes: 1 addition & 1 deletion src/v/cloud_storage/segment_chunk_data_source.cc
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ ss::future<> chunk_data_source_impl::load_stream_for_chunk(
} catch (...) {
eptr = std::current_exception();
vlog(
_ctxlog.error,
_ctxlog.debug,
"Hydrating chunk {} failed with error {}",
chunk_start,
eptr);
Expand Down

0 comments on commit 1d5cbc3

Please sign in to comment.