Skip to content

Commit 62c8ca5

Browse files
committed
Tighten broker log fallback filter
1 parent 685d9ed commit 62c8ca5

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • packages/cli-rust/src/commands

packages/cli-rust/src/commands/logs.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -340,7 +340,7 @@ fn should_skip_broker_fallback_line(line: &str, args: &LogsArgs) -> bool {
340340
}
341341

342342
fn broker_log_matches(line: &str) -> bool {
343-
line.contains("opencode_broker") || line.contains("opencode-broker")
343+
line.contains("opencode_broker::") || line.contains("opencode-broker")
344344
}
345345

346346
fn log_output_to_line(output: LogOutput) -> Option<String> {

0 commit comments

Comments
 (0)