Skip to content

Commit

Permalink
Use Display instead of Debug for error logging
Browse files Browse the repository at this point in the history
  • Loading branch information
pitdicker committed Feb 17, 2018
1 parent ae48b7e commit 46ad0fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/reseeding.rs
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ impl<R: Rng+SeedableRng, Rsdr: Rng> ReseedingRng<R, Rsdr> {
// Retry immediately for 5 times (arbitrary limit)
if err_count <= 5 { continue; }
}
warn!("Reseeding RNG failed; continuing without reseeding. Error: {:?}", e);
warn!("Reseeding RNG failed; continuing without reseeding. Error: {}", e);
}
break; // Successfully reseeded, delayed, or given up.
}
Expand Down

0 comments on commit 46ad0fc

Please sign in to comment.