From 0d40894b479a66fa894191fcbf384304b4d942a1 Mon Sep 17 00:00:00 2001 From: Rasmus Karlsson Date: Sat, 7 Jul 2018 21:59:17 +0200 Subject: [PATCH] improve error message in loadEmotes --- src/providers/twitch/TwitchAccount.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/providers/twitch/TwitchAccount.cpp b/src/providers/twitch/TwitchAccount.cpp index 0d1c1f736..785f159e5 100644 --- a/src/providers/twitch/TwitchAccount.cpp +++ b/src/providers/twitch/TwitchAccount.cpp @@ -338,7 +338,7 @@ void TwitchAccount::loadEmotes(std::function req.makeAuthorizedV5(this->getOAuthClient(), this->getOAuthToken()); req.onError([=](int errorCode) { - Log("Error {}", errorCode); + Log("[TwitchAccount::loadEmotes] Error {}", errorCode); if (errorCode == 203) { // onFinished(FollowResult_NotFollowing); } else {