diff options
| author | acdenisSK <[email protected]> | 2017-07-27 08:10:41 +0200 |
|---|---|---|
| committer | acdenisSK <[email protected]> | 2017-07-27 08:10:41 +0200 |
| commit | 70b5097aaac85f970c32ceb988dbb5f5d575ee0f (patch) | |
| tree | d2f391d3b552cfae58b74748a2a2aa5ae80c7986 /src/voice/threading.rs | |
| parent | rustfmt (diff) | |
| download | serenity-70b5097aaac85f970c32ceb988dbb5f5d575ee0f.tar.xz serenity-70b5097aaac85f970c32ceb988dbb5f5d575ee0f.zip | |
Change the config a bit, and a few nitpicks
Diffstat (limited to 'src/voice/threading.rs')
| -rw-r--r-- | src/voice/threading.rs | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/voice/threading.rs b/src/voice/threading.rs index f272282..fc3a947 100644 --- a/src/voice/threading.rs +++ b/src/voice/threading.rs @@ -67,8 +67,10 @@ fn runner(rx: &MpscReceiver<Status>) { match cycle { Ok(()) => false, Err(why) => { - error!("(╯°□°)╯︵ ┻━┻ Error updating connection: {:?}", - why); + error!( + "(╯°□°)╯︵ ┻━┻ Error updating connection: {:?}", + why + ); true }, |