NIHVIVO-1229 Display more diagnostic information.
This commit is contained in:
parent
9941cb206e
commit
2057087789
1 changed files with 3 additions and 1 deletions
|
@ -24,6 +24,8 @@ public class InfoResponseParser {
|
||||||
|
|
||||||
public InfoResponseParser(String infoResponse) {
|
public InfoResponseParser(String infoResponse) {
|
||||||
this.infoResponse = infoResponse;
|
this.infoResponse = infoResponse;
|
||||||
|
System.err.println("response from svn info: '"
|
||||||
|
+ infoResponse.replace("\n", "\\n") + "'");
|
||||||
}
|
}
|
||||||
|
|
||||||
public String parse() {
|
public String parse() {
|
||||||
|
@ -41,7 +43,7 @@ public class InfoResponseParser {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
System.err.println(e);
|
System.err.println(e);
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue