From 5c694317ed8e504ee4b507281029a77bd0c5de4d Mon Sep 17 00:00:00 2001 From: Stefan Schantl Date: Tue, 24 Nov 2015 13:26:34 +0100 Subject: [PATCH] Enable and use the warnings core module. When using the warnings module, perl will display a lot of usefull informations when launching the script and therefore helps to improve the code. Signed-off-by: Stefan Schantl --- guardian | 2 ++ 1 file changed, 2 insertions(+) diff --git a/guardian b/guardian index af5caeb..2928773 100644 --- a/guardian +++ b/guardian @@ -31,6 +31,8 @@ require Guardian::Config; require Guardian::Parser; require Guardian::Socket; +use warnings; + # Define version. my $version ="2.0"; -- 2.39.2