Skip to content

Commit

Permalink
Flip logic pertaining to logging success of housekeeping tasks.
Browse files Browse the repository at this point in the history
  • Loading branch information
wagnerrp committed Jun 9, 2013
1 parent f796163 commit 4d58772
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mythtv/libs/libmythbase/housekeeper.cpp
Expand Up @@ -131,7 +131,7 @@ bool HouseKeeperTask::Run(void)
LOG(VB_GENERAL, LOG_INFO, QString("Running HouseKeeperTask '%1'.")
.arg(m_dbTag));
bool res = DoRun();
if (res)
if (!res)
LOG(VB_GENERAL, LOG_INFO, QString("HouseKeeperTask '%1' Failed.")
.arg(m_dbTag));
else
Expand Down

0 comments on commit 4d58772

Please sign in to comment.