Skip to content

Commit 46ad0fc

Browse files
committed
Use Display instead of Debug for error logging
1 parent ae48b7e commit 46ad0fc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/reseeding.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ impl<R: Rng+SeedableRng, Rsdr: Rng> ReseedingRng<R, Rsdr> {
109109
// Retry immediately for 5 times (arbitrary limit)
110110
if err_count <= 5 { continue; }
111111
}
112-
warn!("Reseeding RNG failed; continuing without reseeding. Error: {:?}", e);
112+
warn!("Reseeding RNG failed; continuing without reseeding. Error: {}", e);
113113
}
114114
break; // Successfully reseeded, delayed, or given up.
115115
}

0 commit comments

Comments
 (0)