This is an automated email from the ASF dual-hosted git repository.
lhotari pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/bookkeeper.git
The following commit(s) were added to refs/heads/master by this push:
new a0231ede67 Fix LedgerHandle.batchReadUnconfirmedAsync: use slog log
instead of LOG (#4782)
a0231ede67 is described below
commit a0231ede679132fc5362c17b104d41383d828ec1
Author: Matteo Merli <[email protected]>
AuthorDate: Thu May 7 22:54:36 2026 -0700
Fix LedgerHandle.batchReadUnconfirmedAsync: use slog log instead of LOG
(#4782)
The batchReadUnconfirmedAsync method added in #4739 calls LOG.error(...),
but LedgerHandle was migrated to slog and only has a lowercase `log`
field. Master fails to compile.
Convert the call to the slog builder style used elsewhere in the file.