Skip to content

Commit

Permalink
VERBOSE -> LOG in mythfilldatabase
Browse files Browse the repository at this point in the history
  • Loading branch information
Beirdo committed Jul 8, 2011
1 parent 3fbaa5e commit 688ed44
Show file tree
Hide file tree
Showing 5 changed files with 239 additions and 220 deletions.
8 changes: 4 additions & 4 deletions mythtv/programs/mythfilldatabase/channeldata.cpp
Expand Up @@ -150,8 +150,8 @@ void ChannelData::handleChannels(int id, QList<ChanInfo> *chanlist)
if (!actualfile.exists() &&
!HttpComms::getHttpFile(localfile, (*i).iconpath))
{
VERBOSE(VB_IMPORTANT,
QString("Failed to fetch icon from '%1'")
LOG(VB_GENERAL, LOG_ERR,
QString("Failed to fetch icon from '%1'")
.arg((*i).iconpath));
}
}
Expand All @@ -172,8 +172,8 @@ void ChannelData::handleChannels(int id, QList<ChanInfo> *chanlist)
}
else if (query.next())
{
VERBOSE(VB_GENERAL,
QString("Converting old xmltvid (%1) to new (%2)")
LOG(VB_GENERAL, LOG_INFO,
QString("Converting old xmltvid (%1) to new (%2)")
.arg((*i).old_xmltvid).arg((*i).xmltvid));

query.prepare("UPDATE channel "
Expand Down

0 comments on commit 688ed44

Please sign in to comment.