------------------------------------------------------------ revno: 1537 committer: James Hunt <[email protected]> branch nick: upstart timestamp: Tue 2013-10-01 16:29:59 +0100 message: * extra/upstart-file-bridge.c: - upstart_job_added(): Make quieter in manner consistent with other bridges (only display output in debug mode). - upstart_job_removed(): As above. modified: ChangeLog extra/upstart-file-bridge.c
-- lp:upstart https://code.launchpad.net/~upstart-devel/upstart/trunk Your team Upstart Reviewers is subscribed to branch lp:upstart. To unsubscribe from this branch go to https://code.launchpad.net/~upstart-devel/upstart/trunk/+edit-subscription
=== modified file 'ChangeLog' --- ChangeLog 2013-09-27 16:02:42 +0000 +++ ChangeLog 2013-10-01 15:29:59 +0000 @@ -1,3 +1,10 @@ +2013-10-01 James Hunt <[email protected]> + + * extra/upstart-file-bridge.c: + - upstart_job_added(): Make quieter in manner consistent with + the other bridges (only display output in debug mode). + - upstart_job_removed(): As above. + 2013-09-26 James Hunt <[email protected]> * init/event.c: event_pending_handle_jobs(): Don't re-iterate job classes === modified file 'extra/upstart-file-bridge.c' --- extra/upstart-file-bridge.c 2013-07-03 08:26:23 +0000 +++ extra/upstart-file-bridge.c 2013-10-01 15:29:59 +0000 @@ -703,7 +703,7 @@ return; } - nih_message ("Job got added %s", job_path); + nih_debug ("Job got added %s", job_path); } /** @@ -731,7 +731,7 @@ if (! job) return; - nih_message ("Job went away %s", job_path); + nih_debug ("Job went away %s", job_path); nih_free (job); }
-- upstart-devel mailing list [email protected] Modify settings or unsubscribe at: https://lists.ubuntu.com/mailman/listinfo/upstart-devel
