From cd28180a1ef2f696d3c87da7a0228d6456e068c4 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Wed, 18 Dec 2019 09:27:59 +0100 Subject: [PATCH] Bug 13897: Catch the error and warn it --- C4/Installer.pm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/C4/Installer.pm b/C4/Installer.pm index 5bf0851f76..f6f244e214 100644 --- a/C4/Installer.pm +++ b/C4/Installer.pm @@ -486,6 +486,9 @@ sub load_sql { } }; } + if ($@){ + warn "Something went wrong loading file $filename ($@)"; + } }; # errors thrown while loading installer data should be logged if( $dup_stderr ) { -- 2.11.0