Skip to content

Commit

Permalink
Fix eprint
Browse files Browse the repository at this point in the history
  • Loading branch information
edg-l committed Dec 12, 2024
1 parent 244a9b2 commit 121b774
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion crates/concrete_driver/src/db.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ pub struct DatabaseImpl {
impl salsa::Database for DatabaseImpl {
fn salsa_event(&self, event: &dyn Fn() -> salsa::Event) {
let event = event();
eprintln!("Event: {event:?}");
tracing::debug!("Salsa Db Event: {event:?}");
}
}
2 changes: 1 addition & 1 deletion crates/concrete_parser/src/db.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ pub struct DatabaseImpl {
impl salsa::Database for DatabaseImpl {
fn salsa_event(&self, event: &dyn Fn() -> salsa::Event) {
let event = event();
eprintln!("Event: {event:?}");
tracing::debug!("Salsa Db Event: {event:?}");
}
}

0 comments on commit 121b774

Please sign in to comment.