Bug 8743 follow-up, throw a more explanatory error message
When testing bug 8743, I discovered a missing index in my authority file. The error message was "CCL parsing error (10014) Unknown qualifier ZOOM" which is not very helpfull because it does not show the query that was made. This patch add the query itself after the zebra error
This commit is contained in:
parent
ffc6730552
commit
f22d9e1337
1 changed files with 1 additions and 1 deletions
|
@ -248,7 +248,7 @@ sub SimpleSearch {
|
|||
. $@->code() . ") "
|
||||
. $@->addinfo() . " "
|
||||
. $@->diagset();
|
||||
warn $error;
|
||||
warn $error." for query: $query";
|
||||
return ( $error, undef, undef );
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue