Skip to content

Commit

Permalink
Temporarily move the 'called from UI thread' messages to the debug level
Browse files Browse the repository at this point in the history
  • Loading branch information
Paul Harrison committed Aug 9, 2013
1 parent 173300e commit 771f2b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mythtv/libs/libmythbase/mythcorecontext.cpp
Expand Up @@ -957,7 +957,7 @@ bool MythCoreContext::SendReceiveStringList(
for (uint i=0; i<(uint)strlist.size() && i<2; i++)
msg += (i?",":"") + strlist[i];
msg += (strlist.size() > 2) ? "...)" : ")";
LOG(VB_GENERAL, LOG_WARNING, msg + " called from UI thread");
LOG(VB_GENERAL, LOG_DEBUG, msg + " called from UI thread");
}

QString query_type = "UNKNOWN";
Expand Down

0 comments on commit 771f2b4

Please sign in to comment.