Except doing explicit logging instructions like suggested in http://upstart.ubuntu.com/wiki/Debugging , is there a way to enable output of what is happening with upstart?

  • What event raised
  • What service changed his status (started/stopped/dead)
  • What signal were emmited
  • what did output a service while starting

Thanks!

link|improve this question

60% accept rate
Perhaps this question might be more appropriate on serverfault.com – mr.b Dec 2 '10 at 13:14
It's relative to both server and desktop... Should I close this one and re-open in serverfault? – samb Dec 2 '10 at 15:44
feedback

1 Answer

up vote 9 down vote accepted

Ok, I've found one way to get it :

$ sudo initctl log-priority        # gives the actual (default) logging level
$ sudo initctl log-priority --help # gives available logging levels
$ sudo initctl log-priority info # is enough to get :
$ tail -f /var/log/syslog        # - log of upstart events
$ tail -f /var/log/boot.log      # - log of services output
link|improve this answer
hey! Ubuntu 11.10 here and there is no /var/log/boot.log for me, just /var/log/boot. That doesn't produce any process output though, i tried echo 'hi' and it's not showing up in /var/log/boot. Any tips? – rdrey Mar 28 at 16:09
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.