We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eaa96c7 commit 24d463fCopy full SHA for 24d463f
launcher/src/main.rs
@@ -130,7 +130,7 @@ async fn open_ui() -> Result<()> {
130
#[cfg(windows)]
131
fn is_daemon_running() -> bool {
132
let binary = get_daemon_binary_name();
133
- println!("Locating Daemon.. {}", binary);
+ println!("Locating Daemon.. {binary}");
134
135
let count = unsafe {
136
let tasks = tasklist::Tasklist::new();
@@ -144,7 +144,7 @@ fn is_daemon_running() -> bool {
144
.count()
145
};
146
147
- println!("Found: {}", count);
+ println!("Found: {count}");
148
count > 0
149
}
150
0 commit comments