Skip to content

Commit

Permalink
remove debug logs
Browse files Browse the repository at this point in the history
  • Loading branch information
theomonnom committed Sep 12, 2024
1 parent 6b1c5ea commit 40a1f11
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 0 additions & 6 deletions libwebrtc/src/native/audio_source.rs
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,6 @@ impl NativeAudioSource {
) -> NativeAudioSource {
assert!(queue_size_ms % 10 == 0, "queue_size_ms must be a multiple of 10");

print!(
"new audio source {} {} {} {}",
sample_rate, num_channels, queue_size_ms, options.echo_cancellation
);

let sys_handle = sys_at::ffi::new_audio_track_source(
options.into(),
sample_rate.try_into().unwrap(),
Expand Down Expand Up @@ -112,7 +107,6 @@ impl NativeAudioSource {
}

let _ = rx.await;
println!("captured frame");
}

Ok(())
Expand Down
2 changes: 1 addition & 1 deletion livekit-ffi/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "livekit-ffi"
version = "0.10.0"
version = "0.10.1"
edition = "2021"
license = "Apache-2.0"
description = "FFI interface for bindings in other languages"
Expand Down

0 comments on commit 40a1f11

Please sign in to comment.