NIHVIVO-1229 Display more diagnostic information.

This commit is contained in:
jeb228 2010-10-27 16:24:30 +00:00
parent 9941cb206e
commit 2057087789

View file

@ -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;
} }
} }