change error to Warning... it is possible to not have any filters returned
This commit is contained in:
parent
f1331df4d9
commit
87088d95ac
|
@ -246,7 +246,7 @@ sub getFilters
|
||||||
}
|
}
|
||||||
$sth->finish();
|
$sth->finish();
|
||||||
if ( ! @filters ) {
|
if ( ! @filters ) {
|
||||||
Error("No filter found for $sql with values(@sql_values)");
|
Warning("No filter found for $sql with values(@sql_values)");
|
||||||
} else {
|
} else {
|
||||||
Debug( "Got " . @filters . " filters" );
|
Debug( "Got " . @filters . " filters" );
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue