Possibility to disable or hide CRON notification about starting one specific process

Clash Royale CLAN TAG#URR8PPP
up vote
0
down vote
favorite
Good evening, my question is as the title states. I was wondering if it is possible to having multiple cron jobs in crontab active, but only one of them starts each minute. The problem here is I wish to keep log of all others jobs informations with the exception of this only one.
Oct 25 14:50:01 dtest CRON[942]: (root) CMD (/usr/bin/python2.7 check.py > /dev/null 2>&1)
Currently I am getting flooded with all those lines, which made me curious if cron is able to supress a log entry for selected processes?
Thank You for the answers
debian cron syslog
add a comment |Â
up vote
0
down vote
favorite
Good evening, my question is as the title states. I was wondering if it is possible to having multiple cron jobs in crontab active, but only one of them starts each minute. The problem here is I wish to keep log of all others jobs informations with the exception of this only one.
Oct 25 14:50:01 dtest CRON[942]: (root) CMD (/usr/bin/python2.7 check.py > /dev/null 2>&1)
Currently I am getting flooded with all those lines, which made me curious if cron is able to supress a log entry for selected processes?
Thank You for the answers
debian cron syslog
I don't thinkcronis designed to be configured to not log event triggers for only one specific event. You can either log, or not. If you want to tail the log and eschew those entries, you cantail -f logfile | grep -v 'python2.7 check.py'.
â DopeGhoti
2 mins ago
add a comment |Â
up vote
0
down vote
favorite
up vote
0
down vote
favorite
Good evening, my question is as the title states. I was wondering if it is possible to having multiple cron jobs in crontab active, but only one of them starts each minute. The problem here is I wish to keep log of all others jobs informations with the exception of this only one.
Oct 25 14:50:01 dtest CRON[942]: (root) CMD (/usr/bin/python2.7 check.py > /dev/null 2>&1)
Currently I am getting flooded with all those lines, which made me curious if cron is able to supress a log entry for selected processes?
Thank You for the answers
debian cron syslog
Good evening, my question is as the title states. I was wondering if it is possible to having multiple cron jobs in crontab active, but only one of them starts each minute. The problem here is I wish to keep log of all others jobs informations with the exception of this only one.
Oct 25 14:50:01 dtest CRON[942]: (root) CMD (/usr/bin/python2.7 check.py > /dev/null 2>&1)
Currently I am getting flooded with all those lines, which made me curious if cron is able to supress a log entry for selected processes?
Thank You for the answers
debian cron syslog
debian cron syslog
asked 5 mins ago
RedS
83
83
I don't thinkcronis designed to be configured to not log event triggers for only one specific event. You can either log, or not. If you want to tail the log and eschew those entries, you cantail -f logfile | grep -v 'python2.7 check.py'.
â DopeGhoti
2 mins ago
add a comment |Â
I don't thinkcronis designed to be configured to not log event triggers for only one specific event. You can either log, or not. If you want to tail the log and eschew those entries, you cantail -f logfile | grep -v 'python2.7 check.py'.
â DopeGhoti
2 mins ago
I don't think
cron is designed to be configured to not log event triggers for only one specific event. You can either log, or not. If you want to tail the log and eschew those entries, you can tail -f logfile | grep -v 'python2.7 check.py'.â DopeGhoti
2 mins ago
I don't think
cron is designed to be configured to not log event triggers for only one specific event. You can either log, or not. If you want to tail the log and eschew those entries, you can tail -f logfile | grep -v 'python2.7 check.py'.â DopeGhoti
2 mins ago
add a comment |Â
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f477814%2fpossibility-to-disable-or-hide-cron-notification-about-starting-one-specific-pro%23new-answer', 'question_page');
);
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
I don't think
cronis designed to be configured to not log event triggers for only one specific event. You can either log, or not. If you want to tail the log and eschew those entries, you cantail -f logfile | grep -v 'python2.7 check.py'.â DopeGhoti
2 mins ago