https://bugzilla.redhat.com/show_bug.cgi?id=2459296
--- Comment #9 from Fabio Valentini <[email protected]> --- Spec URL: https://decathorpe.fedorapeople.org/rust-slog-extlog.spec SRPM URL: https://decathorpe.fedorapeople.org/rust-slog-extlog-8.1.0-1.fc44.src.rpm Turns out, fixing this was relatively straightforward - add a dev-dependency on "slog/release_max_level_debug". All tests pass with this patch. rust2rpm.toml: ``` [package] cargo-toml-patch-comments = [ "enable debug logging during tests also in release mode", ] ``` slog-extlog-fix-metadata.diff: ``` --- slog-extlog-8.1.0/Cargo.toml 1970-01-01T00:00:01+00:00 +++ slog-extlog-8.1.0/Cargo.toml 2026-05-09T13:03:53.794395+00:00 @@ -65,6 +65,10 @@ [dev-dependencies.bencher] version = "0.1.5" +[dev-dependencies.slog] +version = "2.7" +features = ["release_max_level_debug"] + [dev-dependencies.slog-extlog-derive] version = "=8.1.0" ``` -- You are receiving this mail because: You are on the CC list for the bug. You are always notified about changes to this product and component https://bugzilla.redhat.com/show_bug.cgi?id=2459296 Report this comment as SPAM: https://bugzilla.redhat.com/enter_bug.cgi?product=Bugzilla&format=report-spam&short_desc=Report%20of%20Bug%202459296%23c9 -- _______________________________________________ package-review mailing list -- [email protected] To unsubscribe send an email to [email protected] Fedora Code of Conduct: https://docs.fedoraproject.org/en-US/project/code-of-conduct/ List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines List Archives: https://lists.fedoraproject.org/archives/list/[email protected] Do not reply to spam, report it: https://forge.fedoraproject.org/infra/tickets/issues/new
