From 9ddf80dfdb4949f3e036a195cea7300e3bd84c35 Mon Sep 17 00:00:00 2001 From: Jed Reynolds Date: Wed, 10 Oct 2018 18:57:42 -0700 Subject: [PATCH] changes warning to just print statement --- LANforge/JsonUtils.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/LANforge/JsonUtils.pm b/LANforge/JsonUtils.pm index 25f58c2a..5844486c 100644 --- a/LANforge/JsonUtils.pm +++ b/LANforge/JsonUtils.pm @@ -110,7 +110,7 @@ sub flatten_list { if (!defined $rh_list->{$list_name}) { print Dumper($rh_list); - warn "flatten_list: $list_name not found"; + print "flatten_list: $list_name not found\n"; return; } if (ref $rh_list->{$list_name} eq "HASH") {