]> git.sur5r.net Git - i3/i3/commitdiff
docs/debugging: also redirect stderr
authorMichael Stapelberg <michael+git@stapelberg.de>
Tue, 28 Apr 2009 20:25:51 +0000 (22:25 +0200)
committerMichael Stapelberg <michael+git@stapelberg.de>
Tue, 28 Apr 2009 20:25:51 +0000 (22:25 +0200)
docs/debugging

index 5dfd95ebed93e558e2781edb96119c6d8ab8a949..d33f64675dc238987be2f95e58fba4723abb14cf 100644 (file)
@@ -13,13 +13,13 @@ further help, do not hesitate to contact us!
 == Enabling logging
 
 i3 spits out much information onto stdout. To have a clearly defined place where logfiles
-will be saved, you should redirect stdout in xsession. While you’re at it, putting each
-run of i3 in a separate logfile with date/time in it is a good idea to not get confused
-about the different logfiles later on.
+will be saved, you should redirect stdout and stderr in xsession. While you’re at it,
+putting each run of i3 in a separate logfile with date/time in it is a good idea to not
+get confused about the different logfiles later on.
 
----------------------------------------------------------------
-exec /usr/bin/i3 >/home/michael/i3/i3log-$(date +'%F-%k-%M-%S')
----------------------------------------------------------------
+--------------------------------------------------------------------
+exec /usr/bin/i3 >/home/michael/i3/i3log-$(date +'%F-%k-%M-%S') 2>&1
+--------------------------------------------------------------------
 
 == Enabling coredumps