Fix to interpret logger channel names as lowercase (#4848)

Co-authored-by: Felanbird <41973452+Felanbird@users.noreply.github.com>
Co-authored-by: Rasmus Karlsson <rasmus.karlsson@pajlada.com>
This commit is contained in:
GongBingWong
2023-10-01 01:56:03 -04:00
committed by GitHub
parent 916427a612
commit ad8f960a8e
2 changed files with 2 additions and 1 deletions
+1 -1
View File
@@ -9,7 +9,7 @@ ChannelLog::ChannelLog(QString channelName)
QString ChannelLog::channelName() const
{
return this->channelName_;
return this->channelName_.toLower();
}
QString ChannelLog::toString() const