add the cause of jgit error to the message
This commit is contained in:
parent
0b5b986691
commit
1fb66b3356
1 changed files with 1 additions and 1 deletions
|
@ -39,7 +39,7 @@ public class GitAsyncTask extends AsyncTask<GitCommand, Integer, String> {
|
|||
aCmd.call();
|
||||
} catch (Exception e) {
|
||||
e.printStackTrace();
|
||||
return e.getMessage();
|
||||
return e.getMessage() + "\nCaused by:\n" + e.getCause();
|
||||
}
|
||||
}
|
||||
return "";
|
||||
|
|
Loading…
Reference in a new issue