From bde1133a39302f75def452f7703337b3a6f4fe3e Mon Sep 17 00:00:00 2001 From: Tomas Cohen Arazi Date: Wed, 13 May 2020 17:17:21 -0300 Subject: [PATCH] Bug 25493: Make ->unhandled_exception use Koha::Logger To test: 1. Edit the Koha/REST/V1/Cities.pm 'list' method adding die("Nada"); before the render step. 2. Restart plack and try the endpoint => SUCCESS: The message is generic, but you see something is logged in /var/log/koha/kohadev/api-error.log 3. Change die("Nada"); for a real exception like: use Koha::Exceptions; Koha::Exceptions::DuplicateObject->throw("Nada"); 4. Repeat 2. => SUCCESS: The message is generic, but a meaningful text is added to the logs. 5. Point your browser to the /api/v1/hola route from your dev environment => FAIL: Wow, such a weird error 6. Apply this patch 7. Restart plack and repeat 2, 3 and 4 => SUCCESS: No behaviour change 8. Repeat 5 => SUCCESS: The regular Mojolicious 404 weird page 9. Sign off :-D Signed-off-by: Tomas Cohen Arazi --- Koha/REST/Plugin/Exceptions.pm | 3 ++- Koha/REST/V1.pm | 3 --- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/Koha/REST/Plugin/Exceptions.pm b/Koha/REST/Plugin/Exceptions.pm index 9e5c5e57272..e9be043aa2b 100644 --- a/Koha/REST/Plugin/Exceptions.pm +++ b/Koha/REST/Plugin/Exceptions.pm @@ -69,7 +69,8 @@ sub register { my $message = "$method $path: unhandled exception $type\<\<$exception_string\>\>"; - $c->app->log->error("$message"); + my $logger = Koha::Logger->get({ interface => 'api' }); + $logger->error("$message"); $c->render( status => 500, diff --git a/Koha/REST/V1.pm b/Koha/REST/V1.pm index 680b52cd670..af6bc886fa7 100644 --- a/Koha/REST/V1.pm +++ b/Koha/REST/V1.pm @@ -40,8 +40,6 @@ Overloaded Mojolicious->startup method. It is called at application startup. sub startup { my $self = shift; - $self->log( Koha::Logger->get({ interface => 'api' }) ); - $self->hook( before_dispatch => sub { my $c = shift; @@ -63,7 +61,6 @@ sub startup { $self->types->type( mij => 'application/marc-in-json' ); $self->types->type( marc => 'application/marc' ); - my $secret_passphrase = C4::Context->config('api_secret_passphrase'); if ($secret_passphrase) { $self->secrets([$secret_passphrase]); -- 2.26.2