Work on implementing the protocol.

This commit is contained in:
Michael Mikovsky
2026-04-24 12:32:24 -06:00
parent 275f6c4ba2
commit dcf0fe230b
36 changed files with 1874 additions and 3855 deletions
+6 -1
View File
@@ -248,7 +248,12 @@ impl Logger for StderrLogger {
if location.is_empty() {
eprintln!("[{}] {}", record.level.as_str(), record.message);
} else {
eprintln!("[{}] {} - {}", record.level.as_str(), record.message, location);
eprintln!(
"[{}] {} - {}",
record.level.as_str(),
record.message,
location
);
}
}
}