Skip to content

Commit

Permalink
Merge pull request #116 from Cosmian/fix/error_lost
Browse files Browse the repository at this point in the history
fix: keep lost error logs
  • Loading branch information
tbrezot authored Jan 28, 2025
2 parents 6e2fd6d + 1033e40 commit e15b415
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/memory/redis_store.rs
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ pub struct MemoryError {

impl fmt::Display for MemoryError {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
write!(f, "Memory Error")
write!(f, "Redis store memory error: {}", self.inner)
}
}

Expand Down

0 comments on commit e15b415

Please sign in to comment.