From 61c5799ffc115a16c63182ac041f9d0ffb30a6f8 Mon Sep 17 00:00:00 2001 From: Nikolai Rodionov Date: Sun, 30 Nov 2025 16:55:27 +0100 Subject: [PATCH] Keep adding irrelevant stuff --- engine/src/main.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/engine/src/main.rs b/engine/src/main.rs index d76c01d..2c44139 100644 --- a/engine/src/main.rs +++ b/engine/src/main.rs @@ -17,10 +17,12 @@ pub struct TermixAudioBackend {} #[tonic::async_trait] impl AudioBackend for TermixAudioBackend { async fn start_client(&self,request:tonic::Request<()>,) -> std::result::Result,tonic::Status> { + info!("starting the audio backend client"); todo!() } async fn init_connection(&self,request:tonic::Request<()>,) -> std::result::Result,tonic::Status> { + info!("initializing the connection to the audio backend"); todo!() } } @@ -29,7 +31,7 @@ impl AudioBackend for TermixAudioBackend { async fn main() -> Result<(), Box> { env_logger::init(); let args = Args::parse(); - info!("starting the grpc server on port {:?}", args.grpc_port); + info!("starting the grpc server on port {}", args.grpc_port); let addr = "[::1]:50051".parse()?; let greeter = TermixAudioBackend::default();