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";
|
||||
}
|
||||
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() {
|
||||
|
|
Loading…
Reference in a new issue