aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authoriNPUTmice <daniel@gultsch.de>2014-07-30 21:48:11 +0200
committeriNPUTmice <daniel@gultsch.de>2014-07-30 21:48:11 +0200
commit3d9eb0e8fe128e0e9ddbf153475c0684d3d1d08a (patch)
tree6f03d5a4b8f2353dcdb7fdf9f524668590f994e1 /README.md
parent511f74116fe428c6cba69f4a50bfe38b1cc008c3 (diff)
added 'how to logcat' to readme
Diffstat (limited to '')
-rw-r--r--README.md12
1 files changed, 12 insertions, 0 deletions
diff --git a/README.md b/README.md
index 5c4e89a9..008d1d79 100644
--- a/README.md
+++ b/README.md
@@ -193,9 +193,21 @@ git submodule update --init --recursive
ant clean
ant debug
```
+####How do I debug Conversations
+If something goes wrong Conversations usually exposes very little information in
+the UI. (Other than the fact that something didn't work)
+However with adb (android debug bridge) you squeeze some more information out of
+Conversations. These information are especially useful if you are experiencing
+troubles with your connection or with file transfer.
+````
+adb -d logcat -v time -s xmppService
+````
####I found a bug
Please report it to our issue tracker. If your app crashes please provide a
stack trace. If you are experiencing missbehaviour please provide detailed
steps to reproduce.
Always mention whether you are running the latest Play Store version or the
current HEAD.
+If you are having problems connecting to your XMPP server your file tranfer
+doesn’t work as expected please always include a logcat debug output with your
+issue. (See above)