Skip to content

Commit

Permalink
clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
AS1100K committed Jan 18, 2025
1 parent c86cf1a commit 76ef43a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions components/monitors/cu_consolemon/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ use std::{io, thread};
use tui_nodes::{Connection, NodeGraph, NodeLayout};
use tui_widgets::scrollview::{ScrollView, ScrollViewState};
#[cfg(feature = "debug_pane")]
use {debug_pane::UIExt, log::Log};
use debug_pane::UIExt;

#[cfg(feature = "debug_pane")]
const MENU_CONTENT: &str = " [1] SysInfo [2] DAG [3] Latencies [4] Debug Output [q] Quit ";
Expand Down Expand Up @@ -649,7 +649,7 @@ impl CuMonitor for CuConsoleMon {
#[cfg(debug_assertions)]
{
*cu29_log_runtime::EXTRA_TEXT_LOGGER.write().unwrap() =
Some(Box::new(log_subscriber) as Box<dyn Log>);
Some(Box::new(log_subscriber) as Box<dyn log::Log>);
}

ui.run_app(&mut terminal).expect("Failed to run app");
Expand Down

0 comments on commit 76ef43a

Please sign in to comment.