change error to Warning... it is possible to not have any filters returned

This commit is contained in:
Isaac Connor 2016-04-05 09:22:36 -04:00
parent f1331df4d9
commit 87088d95ac
1 changed files with 1 additions and 1 deletions

View File

@ -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" );
} }