Skip to content

Commit

Permalink
Channelgroup name in log message
Browse files Browse the repository at this point in the history
Replace the channelgroup ID with the channelgroup name in log message.
  • Loading branch information
kmdewaal committed Nov 23, 2024
1 parent 2341064 commit 0cab851
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mythtv/libs/libmythtv/channelgroup.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -562,7 +562,7 @@ void ChannelGroup::UpdateChannelGroups(void)
if (query.numRowsAffected() > 0)
{
LOG(VB_GENERAL, LOG_INFO, QString("Removed %1 channels from channelgroup %2")
.arg(query.numRowsAffected()).arg(chgrp.m_grpId));
.arg(query.numRowsAffected()).arg(chgrp.m_name));
}
}
}
Expand Down

0 comments on commit 0cab851

Please sign in to comment.