Allow PHP debug flag in local build

This commit is contained in:
Klaus Basan
2019-03-14 03:37:34 +01:00
committed by Mat Sutcliffe
parent c8eb8ecc2d
commit 11785c434d

View File

@@ -185,7 +185,7 @@ namespace BlackCore
if (!m_dbDebugFlag) { return false; }
// further checks could go here
const bool f = isDevelopment();
const bool f = this->isDevelopment() || CBuildConfig::isLocalDeveloperDebugBuild();
return f;
}