From 07496c84cd443daccc99a2ac565fd17f40dd8ca9 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 Signed-off-by: Martin Renvoize --- C4/Installer.pm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/C4/Installer.pm b/C4/Installer.pm index 2b911f204e..2e799c2fd6 100644 --- a/C4/Installer.pm +++ b/C4/Installer.pm @@ -492,6 +492,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.20.1