diff --git a/src/include/ABHelper.php b/src/include/ABHelper.php index d257ea9..af60bb5 100644 --- a/src/include/ABHelper.php +++ b/src/include/ABHelper.php @@ -250,12 +250,12 @@ public static function startContainer($container) { continue; } - self::backupLog("Container '" . $container['Name'] . "' did not started! - Code: " . $dockerStartCode, self::LOGLEVEL_WARN, true, true); + self::backupLog("Container '" . $container['Name'] . "' did not start! - Code: " . $dockerStartCode, self::LOGLEVEL_WARN, true, true); if ($dockerStartTry < 3) { $dockerStartTry++; sleep(5); } else { - self::backupLog("Container '" . $container['Name'] . "' did not started after multiple tries, skipping. More infos in debug log", self::LOGLEVEL_ERR); + self::backupLog("Container '" . $container['Name'] . "' did not start after multiple tries, skipping. More infos in debug log", self::LOGLEVEL_ERR); $output = null; exec("docker ps -a", $output); self::backupLog("docker ps -a:" . PHP_EOL . print_r($output, true), self::LOGLEVEL_DEBUG);