Skip to content

Commit

Permalink
README: added debugging log information
Browse files Browse the repository at this point in the history
  • Loading branch information
jgeboski committed Jul 13, 2015
1 parent a35015f commit cfbfc9c
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions README
Original file line number Diff line number Diff line change
Expand Up @@ -118,3 +118,33 @@ Obtaining a GDB backtrace:
-ex "set pagination off" \
-ex run -ex bt \
--args pidgin --debug

## Debugging Logs

Debugging logs can often be very useful for determining the root cause
of an issue. Please note, these logs often contain **sensitive** data,
and are likely not ideal for posting in the issue tracker, or anywhere
public for that matter. If a log has has been request from you, it is
preferred you email it directly to the developer, @jgeboski, to prevent
from publicly displaying the log. By emailing a debugging log to the
developer, you understand there is a risk of your sensitive information
potentially being exposed. Before submitting a debugging log, it is
recommended you change you password, or reset your app password.

### Debug Log on *NIX

In a terminal run the following command:

$ PURPLE_UNSAFE_DEBUG=1 PURPLE_VERBOSE_DEBUG=1 pidgin --debug &> pidgin.log

### Debug Log on Windows

set PURPLE_UNSAFE_DEBUG=1
set PURPLE_VERBOSE_DEBUG=1
cd "C:\Program Files\Pidgin"
pidgin.exe --debug 2>&1 > "%USERPROFILE%\pidgin.log"
echo %USERPROFILE%

Note: `Program Files` will be `Program Files (x86)` on 64-bit Windows.

Note: The debug log will reside in `%USERPROFILE%`, which is echoed above.

0 comments on commit cfbfc9c

Please sign in to comment.