Add info to trace
This commit is contained in:
parent
c185447fbe
commit
57b86af812
1 changed files with 6 additions and 1 deletions
|
@ -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();
|
||||||
|
try {
|
||||||
analyze();
|
analyze();
|
||||||
|
} catch(RuntimeException e) {
|
||||||
|
System.err.println("Error analyzing tag/value = " + t + "/" +v);
|
||||||
|
throw e;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public String getTag() {
|
public String getTag() {
|
||||||
|
|
Loading…
Reference in a new issue