aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/tell.rs
diff options
context:
space:
mode:
authorJokler <jokler.contact@gmail.com>2018-02-13 16:18:42 +0100
committerJokler <jokler.contact@gmail.com>2018-02-13 16:18:42 +0100
commit968c837365c4a332fe3c802fd4ecab2562eb4d5a (patch)
tree4ad922c19536fcf4630c4cae624946cfadea66ef /src/plugins/tell.rs
parentd08eb3db79e702a729324e06ed8f6ab86c8355e3 (diff)
downloadfrippy-968c837365c4a332fe3c802fd4ecab2562eb4d5a.tar.gz
frippy-968c837365c4a332fe3c802fd4ecab2562eb4d5a.zip
Replace try_option with ?
Diffstat (limited to 'src/plugins/tell.rs')
-rw-r--r--src/plugins/tell.rs5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/plugins/tell.rs b/src/plugins/tell.rs
index 3ec9586..34d7cf8 100644
--- a/src/plugins/tell.rs
+++ b/src/plugins/tell.rs
@@ -77,7 +77,10 @@ impl Tell {
) {
return ExecutionStatus::Err(e);
}
- debug!("Sent {:?} from {:?} to {:?}", tell.message, tell.sender, receiver);
+ debug!(
+ "Sent {:?} from {:?} to {:?}",
+ tell.message, tell.sender, receiver
+ );
}
}
tells.remove(receiver);