@@ -, +, @@ suppress errors that would be there --- Koha/REST/V1/Auth.pm | 2 ++ 1 file changed, 2 insertions(+) --- a/Koha/REST/V1/Auth.pm +++ a/Koha/REST/V1/Auth.pm @@ -95,6 +95,7 @@ sub under { } catch { unless (blessed($_)) { + warn $_; return $c->render( status => 500, json => { error => 'Something went wrong, check the logs.' } @@ -128,6 +129,7 @@ sub under { return $c->render(status => 500, json => { error => $_->error }); } else { + warn Data::Dumper::Dumper($_); return $c->render( status => 500, json => { error => 'Something went wrong, check the logs.' } --