Apply suggestions from code review

Co-authored-by: link2xt <link2xt@testrun.org>
Co-authored-by: iequidoo <117991069+iequidoo@users.noreply.github.com>
This commit is contained in:
Simon Laux
2024-10-10 15:14:27 +02:00
committed by Simon Laux
parent 3d4e96897e
commit fbf2538fa2
2 changed files with 6 additions and 6 deletions

View File

@@ -151,7 +151,7 @@ pub(crate) async fn set_debug_logging_xdc(ctx: &Context, id: Option<MsgId>) -> a
let (sender, debug_logging_recv) = channel::bounded(1000);
let loop_handle = {
let ctx = ctx.clone();
spawn_named_task!("debug_logging_loop", async move {
spawn_named_task!("xdc_debug_logging_loop", async move {
debug_logging_loop(&ctx, debug_logging_recv).await
})
};