Skip to content

Commit 333b71f

Browse files
AlexsJonesclaude
andcommitted
chore: remove dashboard URL print on startup
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 1f8d1a1 commit 333b71f

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

llmfit-tui/src/main.rs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -677,7 +677,6 @@ fn ensure_dashboard_available(
677677
let url = format!("http://{}:{}/", host, port);
678678

679679
if dashboard_reachable(&host, port) {
680-
eprintln!("Dashboard: {}", url);
681680
return None;
682681
}
683682

@@ -720,7 +719,6 @@ fn ensure_dashboard_available(
720719

721720
for _ in 0..20 {
722721
if dashboard_reachable(&host, port) {
723-
eprintln!("Dashboard: {}", url);
724722
return Some(DashboardGuard { child });
725723
}
726724

@@ -742,7 +740,6 @@ fn ensure_dashboard_available(
742740
thread::sleep(Duration::from_millis(100));
743741
}
744742

745-
eprintln!("Dashboard starting: {}", url);
746743
Some(DashboardGuard { child })
747744
}
748745

0 commit comments

Comments
 (0)