mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-21 04:45:31 +08:00
Per default enable matching log
This commit is contained in:
@@ -65,7 +65,8 @@ namespace BlackCore
|
|||||||
CContextSimulator::registerHelp();
|
CContextSimulator::registerHelp();
|
||||||
|
|
||||||
Q_ASSERT_X(sApp, Q_FUNC_INFO, "Need sApp");
|
Q_ASSERT_X(sApp, Q_FUNC_INFO, "Need sApp");
|
||||||
m_enableMatchingMessages = CBuildConfig::isLocalDeveloperDebugBuild() || sApp->isDeveloperFlagSet();
|
// m_enableMatchingMessages = CBuildConfig::isLocalDeveloperDebugBuild() || sApp->isDeveloperFlagSet();
|
||||||
|
m_enableMatchingMessages = true; // there seems to be no big disadavantage in always enabling it
|
||||||
m_plugins->collectPlugins();
|
m_plugins->collectPlugins();
|
||||||
this->restoreSimulatorPlugins();
|
this->restoreSimulatorPlugins();
|
||||||
|
|
||||||
|
|||||||
@@ -56,8 +56,11 @@ namespace BlackGui
|
|||||||
bool c = sGui->getIContextNetwork()->isReverseLookupMessagesEnabled();
|
bool c = sGui->getIContextNetwork()->isReverseLookupMessagesEnabled();
|
||||||
ui->cb_LogReverseLookup->setChecked(c);
|
ui->cb_LogReverseLookup->setChecked(c);
|
||||||
|
|
||||||
c = sGui->getIContextSimulator()->isMatchingMessagesEnabled();
|
if (sGui)
|
||||||
ui->cb_LogMatchingMessages->setChecked(c);
|
{
|
||||||
|
c = sGui->getIContextSimulator()->isMatchingMessagesEnabled();
|
||||||
|
ui->cb_LogMatchingMessages->setChecked(c);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
bool CModelMatcherLogComponent::hasContexts() const
|
bool CModelMatcherLogComponent::hasContexts() const
|
||||||
|
|||||||
Reference in New Issue
Block a user