From 50ef7e9201253472d9df5eedf2c8b99c8eeae719 Mon Sep 17 00:00:00 2001 From: Ben Dean-Kawamura Date: Sat, 9 Nov 2024 12:44:31 -0500 Subject: [PATCH] Fix logging entry in CHANGELOG (#2302) This wasn't released in 0.28.2. --- CHANGELOG.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9a668af66..8d85f189d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -22,6 +22,10 @@ - Kotlin: Proc-macros exporting an `impl Trait for Struct` block now has a class inheritance hierarcy to reflect that. [#2297](https://github.com/mozilla/uniffi-rs/pull/2297) +- Removed the `log` dependency and logging statements about FFI calls. These were not really useful + to consumers and could have high overhead when lots of FFI calls are made. Instead, the + `ffi-trace` feature can be used to get tracing-style printouts about the FFI. + [All changes in [[UnreleasedUniFFIVersion]]](https://github.com/mozilla/uniffi-rs/compare/v0.28.2...HEAD). ### What's changed? @@ -32,10 +36,6 @@ ### What's new? -- Removed the `log` dependency and logging statements about FFI calls. These were not really useful - to consumers and could have high overhead when lots of FFI calls are made. Instead, the - `ffi-trace` feature can be used to get tracing-style printouts about the FFI. - - Added the `uniffi-bindgen-swift` binary. It works like `uniffi-bindgen` but with additional Swift-specific features. See https://mozilla.github.io/uniffi-rs/latest/swift/uniffi-bindgen-swift.html for details.