Skip to content

Commit

Permalink
chore: less annoying trace message
Browse files Browse the repository at this point in the history
  • Loading branch information
jacek-prisma committed Dec 13, 2024
1 parent 5c333e4 commit a5078e1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions quaint/src/connector/postgres/native/cache.rs
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ impl<V> InnerLruCache<V> {
match cache.get_mut(&key) {
Some(value) => {
tracing::trace!(
message = "CACHE HIT!",
message = "query cache hit",
query = sql,
capacity = capacity,
stored = stored,
Expand All @@ -207,7 +207,7 @@ impl<V> InnerLruCache<V> {
}
None => {
tracing::trace!(
message = "CACHE MISS!",
message = "query cache miss",
query = sql,
capacity = capacity,
stored = stored,
Expand Down

0 comments on commit a5078e1

Please sign in to comment.