Skip to content

Commit

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

[v23.2.x] CORE-1752: cst: Downgrade error logs to debug
  • Loading branch information
piyushredpanda authored Apr 23, 2024
2 parents ecea599 + ef6fec8 commit 83f04be
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 @@ -107,7 +107,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 83f04be

Please sign in to comment.