14 Sep
2012
14 Sep
'12
20:01
On Sat, 15 Sep 2012 01:47:19 Carlos E. R. wrote:
On 2012-09-14 13:59, Per Jessen wrote:
so it should trigger, and it doesn't :-?
Probably because each call to /bin/logger is a new process.
Yes... I'm thinking that way, too.
You could use python which has a simple syslog interface: --- snip --- import syslog syslog.syslog('Processing started') for i in range(100): syslog.syslog(syslog.LOG_ERR, 'Python test %i' % i) --- snip --- See http://docs.python.org/library/syslog.html for options (example at bottom of page). -- To unsubscribe, e-mail: opensuse+unsubscribe@opensuse.org To contact the owner, e-mail: opensuse+owner@opensuse.org