mention -V -d all in docs/debugging

This commit is contained in:
Michael Stapelberg 2010-03-27 15:30:09 +01:00
parent e7b354e0dc
commit 996884db18
1 changed files with 7 additions and 7 deletions

View File

@ -1,7 +1,7 @@
Debugging i3: How To Debugging i3: How To
==================== ====================
Michael Stapelberg <michael+i3@stapelberg.de> Michael Stapelberg <michael+i3@stapelberg.de>
April 2009 March 2010
This document describes how to debug i3 suitably for sending us useful bug This document describes how to debug i3 suitably for sending us useful bug
reports, even if you have no clue of C programming. reports, even if you have no clue of C programming.
@ -12,14 +12,14 @@ debugging and/or need further help, do not hesitate to contact us!
== Enabling logging == Enabling logging
i3 spits out much information onto stdout. To have a clearly defined place i3 spits out much information onto stdout, if told so. To have a clearly
where log files will be saved, you should redirect stdout and stderr in defined place where log files will be saved, you should redirect stdout and
xsession. While youre at it, putting each run of i3 in a separate log file stderr in xsession. While youre at it, putting each run of i3 in a separate
with date/time in it is a good idea to not get confused about the different log file with date/time in it is a good idea to not get confused about the
log files later on. different log files later on.
-------------------------------------------------------------------- --------------------------------------------------------------------
exec /usr/bin/i3 >/home/michael/i3/i3log-$(date +'%F-%k-%M-%S') 2>&1 exec /usr/bin/i3 -V -d all >/home/michael/i3/i3log-$(date +'%F-%k-%M-%S') 2>&1
-------------------------------------------------------------------- --------------------------------------------------------------------
== Enabling core dumps == Enabling core dumps