Skip to content

Commit

Permalink
Changed debug message to info
Browse files Browse the repository at this point in the history
  • Loading branch information
ctippler committed Dec 9, 2019
1 parent 74ca2f2 commit 5b4f499
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Maintenance.php
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ public function executeCronJobs()
$logger->debug('Execution job: ' . $config->getName().' ID: ' . $config->getId().' Diff:' . $diff.' Command: '. $result['executedCommand']);
$config->setLastCronJobExecution(time())->save();
} else {
$logger->emergency("Can't start the Cronjob. Data: " . print_r($result, true));
$logger->info("Can't start the Cronjob. Data: " . print_r($result, true));
}
} else {
$logger->debug('Skipping job: ' . $config->getName().' ID: ' . $config->getId().' Diff:' . $diff);
Expand Down

0 comments on commit 5b4f499

Please sign in to comment.