View | Details | Raw Unified | Return to bug 25032
Collapse All | Expand All

(-)a/Koha/REST/Plugin/Exceptions.pm (-2 / +4 lines)
Lines 64-70 sub register { Link Here
64
                $type = "(" . ref($exception) . ")";
64
                $type = "(" . ref($exception) . ")";
65
            }
65
            }
66
66
67
            my $message = "$method $path: unhandled exception $type\<\<$exception\>\>";
67
            my $exception_string = "$exception";
68
            chomp($exception_string);
69
70
            my $message = "$method $path: unhandled exception $type\<\<$exception_string\>\>";
68
71
69
            $c->app->log->error("$message");
72
            $c->app->log->error("$message");
70
73
71
- 

Return to bug 25032