Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
simple_cron
Manage
Activity
Members
Labels
Plan
Wiki
Custom issue tracker
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
project
simple_cron
Merge requests
!2
Issue
#3379107
: Simple cron should log failed manual executions.
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Issue
#3379107
: Simple cron should log failed manual executions.
issue/simple_cron-3379107:3379107-simple-cron-should
into
1.1.x
Overview
0
Commits
3
Pipelines
2
Changes
1
Merged
Muneeb Mukhtar
requested to merge
issue/simple_cron-3379107:3379107-simple-cron-should
into
1.1.x
1 year ago
Overview
0
Commits
3
Pipelines
2
Changes
1
Expand
0
0
Merge request reports
Compare
1.1.x
version 6
17911908
4 months ago
version 5
cf1bc22c
5 months ago
version 4
2681f605
5 months ago
version 3
523d83b0
1 year ago
version 2
a45fa367
1 year ago
version 1
523d83b0
1 year ago
1.1.x (base)
and
latest version
latest version
17911908
3 commits,
4 months ago
version 6
17911908
3 commits,
4 months ago
version 5
cf1bc22c
2 commits,
5 months ago
version 4
2681f605
1 commit,
5 months ago
version 3
523d83b0
1 commit,
1 year ago
version 2
a45fa367
2 commits,
1 year ago
version 1
523d83b0
1 commit,
1 year ago
1 file
+
3
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
src/Commands/SimpleCronCommands.php
+
3
−
0
Options
@@ -99,6 +99,9 @@ class SimpleCronCommands extends DrushCommands {
if
(
$status
)
{
$this
->
getLogger
(
'simple_cron'
)
->
notice
(
'Execution of cron job @job is completed.'
,
[
'@job'
=>
$job
->
id
()]);
}
else
{
$this
->
getLogger
(
'simple_cron'
)
->
error
(
'Execution of cron job @job failed.'
,
[
'@job'
=>
$job
->
id
()]);
}
}
/**
Loading