Add debug output to channel point reward callbacks (#4142)

This commit is contained in:
pajlada
2022-11-12 00:49:44 +01:00
committed by GitHub
parent 46cdb89498
commit c714f15ce9
2 changed files with 10 additions and 0 deletions
+4
View File
@@ -267,6 +267,10 @@ void TwitchChannel::addChannelPointReward(const ChannelPointReward &reward)
}
if (result)
{
qCDebug(chatterinoTwitch)
<< "[TwitchChannel" << this->getName()
<< "] Channel point reward added:" << reward.id << ","
<< reward.title << "," << reward.isUserInputRequired;
this->channelPointRewardAdded.invoke(reward);
}
}