Skip to content

Commit

Permalink
Fix typo in the logger error (#96)
Browse files Browse the repository at this point in the history
  • Loading branch information
robklg authored May 26, 2021
1 parent 65dd2d6 commit ce50bfb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/logging.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ where
type Err = ();
fn log(&self, record: &Record, logger_values: &OwnedKVList) -> Result<(), ()> {
if let Err(err) = self.drain.log(record, logger_values) {
eprint!("A drain cloud not log to its destenation: {}", err);
eprint!("A drain could not log to its destination: {}", err);
}
Ok(())
}
Expand Down

0 comments on commit ce50bfb

Please sign in to comment.