diff options
| author | Austin Hellyer <[email protected]> | 2016-12-19 11:23:26 -0800 |
|---|---|---|
| committer | Austin Hellyer <[email protected]> | 2016-12-19 11:23:26 -0800 |
| commit | 86bb46c14088516c5e52a2cd0607b7ae33b50898 (patch) | |
| tree | 9db3d83666073b59b26944e1eb282c16b38a0307 /src/ext | |
| parent | Clarify command missing argument message (diff) | |
| download | serenity-86bb46c14088516c5e52a2cd0607b7ae33b50898.tar.xz serenity-86bb46c14088516c5e52a2cd0607b7ae33b50898.zip | |
(╯°□°)╯︵ ┻━┻
Diffstat (limited to 'src/ext')
| -rw-r--r-- | src/ext/voice/handler.rs | 2 | ||||
| -rw-r--r-- | src/ext/voice/threading.rs | 3 |
2 files changed, 3 insertions, 2 deletions
diff --git a/src/ext/voice/handler.rs b/src/ext/voice/handler.rs index e9e5cd6..05f977d 100644 --- a/src/ext/voice/handler.rs +++ b/src/ext/voice/handler.rs @@ -261,7 +261,7 @@ impl Handler { channel_id.0 } else { // Theoretically never happens? This needs to be researched more. - error!("[Voice] No guild/channel ID when connecting"); + error!("(╯°□°)╯︵ ┻━┻ No guild/channel ID when connecting"); return; }; diff --git a/src/ext/voice/threading.rs b/src/ext/voice/threading.rs index 8d3599b..0aaafba 100644 --- a/src/ext/voice/threading.rs +++ b/src/ext/voice/threading.rs @@ -73,7 +73,8 @@ fn runner(rx: MpscReceiver<Status>) { match cycle { Ok(()) => false, Err(why) => { - error!("[Voice] Error updating connection: {:?}", why); + error!("(╯°□°)╯︵ ┻━┻ Error updating connection: {:?}", + why); true }, |