Skip to content

Commit

Permalink
fix(katana-runner): expected module path in json logs (#1842)
Browse files Browse the repository at this point in the history
fix: expected module path in json logs
  • Loading branch information
lambda-0x authored Apr 16, 2024
1 parent 9b44b5c commit c0548a4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/katana/runner/src/utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ pub fn wait_for_server_started_and_signal(path: &Path, stdout: ChildStdout, send
let line = line.expect("failed to read line from subprocess stdout");
writeln!(log_writer, "{}", line).expect("failed to write to log file");

if line.contains(r#""target":"katana""#) {
if line.contains(r#""target":"katana::cli""#) {
sender.send(()).expect("failed to send start signal");
}
}
Expand Down

0 comments on commit c0548a4

Please sign in to comment.