Skip to content

Commit

Permalink
Merge pull request #18019 from vbotbuildovich/backport-pr-17828-v23.3…
Browse files Browse the repository at this point in the history
….x-720

[v23.3.x] CORE-1752: cst: Downgrade error logs to debug
  • Loading branch information
piyushredpanda authored Apr 23, 2024
2 parents 1017b79 + 66b66b4 commit 8f2ad5c
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 @@ -216,7 +216,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 8f2ad5c

Please sign in to comment.