From 385f0ead74f4de5c4166f611390848aeb8ccae7a Mon Sep 17 00:00:00 2001 From: Andreas Pehrson Date: Mon, 19 Feb 2024 17:35:06 +0100 Subject: [PATCH] Fix: Log the correct device id --- src/backend/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/backend/mod.rs b/src/backend/mod.rs index f1faca7..5d77fea 100644 --- a/src/backend/mod.rs +++ b/src/backend/mod.rs @@ -2745,7 +2745,7 @@ impl<'ctx> CoreStreamData<'ctx> { } cubeb_log!( "Output device ID: {} (aggregate: {:?})", - self.input_device.id, + self.output_device.id, output_is_aggregate ); }