N°9564 - fix first screen

log cleanup

after merge adaptations
This commit is contained in:
odain
2026-05-20 17:44:55 +02:00
parent 00f1c7498d
commit 08a3044cd1
7 changed files with 112 additions and 125 deletions

View File

@@ -1634,7 +1634,6 @@ class RunTimeEnvironment
protected function GetModulesToLoad(string $sSourceEnv, array $aSearchDirs): ?array
{
if (is_null($this->GetExtensionMap())) {
SetupLog::Error(__METHOD__ . '================' . __LINE__);
return null;
}
@@ -1642,7 +1641,6 @@ class RunTimeEnvironment
$aChoices = $this->GetExtensionMap()->GetChoicesFromDatabase($oSourceConfig);
if (false === $aChoices) {
SetupLog::Error(__METHOD__ . '================' . __LINE__);
return null;
}
$sSourceDir = $oSourceConfig->Get('source_dir');
@@ -1668,7 +1666,6 @@ class RunTimeEnvironment
$aModulesToLoad[] = $sModuleName;
}
SetupLog::Error(__METHOD__ . '================' . __LINE__, null, [$aChoices, $aModuleIdsToLoad]);
return $aModulesToLoad;
}