mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-03-23 07:15:35 +08:00
Per default enable matching log
This commit is contained in:
@@ -65,7 +65,8 @@ namespace BlackCore
|
||||
CContextSimulator::registerHelp();
|
||||
|
||||
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();
|
||||
this->restoreSimulatorPlugins();
|
||||
|
||||
|
||||
@@ -56,8 +56,11 @@ namespace BlackGui
|
||||
bool c = sGui->getIContextNetwork()->isReverseLookupMessagesEnabled();
|
||||
ui->cb_LogReverseLookup->setChecked(c);
|
||||
|
||||
c = sGui->getIContextSimulator()->isMatchingMessagesEnabled();
|
||||
ui->cb_LogMatchingMessages->setChecked(c);
|
||||
if (sGui)
|
||||
{
|
||||
c = sGui->getIContextSimulator()->isMatchingMessagesEnabled();
|
||||
ui->cb_LogMatchingMessages->setChecked(c);
|
||||
}
|
||||
}
|
||||
|
||||
bool CModelMatcherLogComponent::hasContexts() const
|
||||
|
||||
Reference in New Issue
Block a user