Add info to trace

This commit is contained in:
vshcherb 2014-03-06 10:13:57 +01:00
parent c185447fbe
commit 57b86af812

View file

@ -67,7 +67,12 @@ public class BinaryMapRouteReaderAdapter {
v = "no"; v = "no";
} }
this.v = v == null? null : v.intern(); this.v = v == null? null : v.intern();
analyze(); try {
analyze();
} catch(RuntimeException e) {
System.err.println("Error analyzing tag/value = " + t + "/" +v);
throw e;
}
} }
public String getTag() { public String getTag() {