added 'how to logcat' to readme
This commit is contained in:
parent
511f74116f
commit
3d9eb0e8fe
12
README.md
12
README.md
|
@ -193,9 +193,21 @@ git submodule update --init --recursive
|
||||||
ant clean
|
ant clean
|
||||||
ant debug
|
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
|
####I found a bug
|
||||||
Please report it to our issue tracker. If your app crashes please provide a
|
Please report it to our issue tracker. If your app crashes please provide a
|
||||||
stack trace. If you are experiencing missbehaviour please provide detailed
|
stack trace. If you are experiencing missbehaviour please provide detailed
|
||||||
steps to reproduce.
|
steps to reproduce.
|
||||||
Always mention whether you are running the latest Play Store version or the
|
Always mention whether you are running the latest Play Store version or the
|
||||||
current HEAD.
|
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)
|
||||||
|
|
Loading…
Reference in New Issue