Skip to content

Commit

Permalink
Add a bit more info to the server
Browse files Browse the repository at this point in the history
  • Loading branch information
parno committed Nov 12, 2024
1 parent d98331f commit ab20f2f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion crates/flycheck/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -349,7 +349,7 @@ impl FlycheckActor {

let command = self.run_verus(filename.clone());
let formatted_command = format!("{command:?}");
tracing::debug!(?command, "will restart flycheck");
tracing::info!(?command, "will restart flycheck");
let (sender, receiver) = unbounded();
match CommandHandle::spawn(command, sender) {
Ok(command_handle) => {
Expand Down Expand Up @@ -559,6 +559,7 @@ impl FlycheckActor {
}
};
dbg!(&verus_binary_str);
tracing::info!("Using Verus binary: {}", &verus_binary_str);

let verus_exec_path = Path::new(&verus_binary_str)
.canonicalize()
Expand Down

0 comments on commit ab20f2f

Please sign in to comment.