@@ -798,10 +798,10 @@ private fun uniffiCheckApiChecksums(lib: IntegrityCheckingUniffiLib) {
798798 if (lib.uniffi_livekit_uniffi_checksum_func_generate_token() != 29823 .toShort()) {
799799 throw RuntimeException (" UniFFI API checksum mismatch: try cleaning and rebuilding your project" )
800800 }
801- if (lib.uniffi_livekit_uniffi_checksum_func_log_forward_bootstrap() != 14091 .toShort()) {
801+ if (lib.uniffi_livekit_uniffi_checksum_func_log_forward_bootstrap() != 28675 .toShort()) {
802802 throw RuntimeException (" UniFFI API checksum mismatch: try cleaning and rebuilding your project" )
803803 }
804- if (lib.uniffi_livekit_uniffi_checksum_func_log_forward_receive() != 30685 .toShort()) {
804+ if (lib.uniffi_livekit_uniffi_checksum_func_log_forward_receive() != 7863 .toShort()) {
805805 throw RuntimeException (" UniFFI API checksum mismatch: try cleaning and rebuilding your project" )
806806 }
807807 if (lib.uniffi_livekit_uniffi_checksum_func_verify_token() != 47517 .toShort()) {
@@ -2003,8 +2003,8 @@ public object FfiConverterMapStringString: FfiConverterRustBuffer<Map<kotlin.Str
20032003 /* *
20042004 * Bootstraps log forwarding.
20052005 *
2006- * Call this once early in the processes's execution. Calling more
2007- * than once will cause a panic .
2006+ * Generally, you will invoke this once early in program execution. However,
2007+ * subsequent invocations are allowed to change the log level .
20082008
20092009 */ fun `logForwardBootstrap` (`level`: LogForwardFilter )
20102010 =
@@ -2022,8 +2022,6 @@ public object FfiConverterMapStringString: FfiConverterRustBuffer<Map<kotlin.Str
20222022 * Invoke repeatedly to receive log entries as they are produced
20232023 * until `None` is returned, indicating forwarding has ended. Clients will
20242024 * likely want to bridge this to the languages's equivalent of an asynchronous stream.
2025- *
2026- * If log forwarding hasn't been bootstrapped, this will panic.
20272025
20282026 */
20292027 @Suppress(" ASSIGNED_BUT_NEVER_ACCESSED_VARIABLE" )
0 commit comments