From 8f0b41d52fb3079a537099c57af9d02d0dcea94a Mon Sep 17 00:00:00 2001 From: Jed Reynolds Date: Wed, 27 Nov 2019 15:03:07 -0800 Subject: [PATCH] JsonUtils: quieter --- LANforge/JsonUtils.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/LANforge/JsonUtils.pm b/LANforge/JsonUtils.pm index 35e10f90..25743e36 100644 --- a/LANforge/JsonUtils.pm +++ b/LANforge/JsonUtils.pm @@ -74,7 +74,7 @@ sub json_request { sub json_post { my ($uri, $rh_data) = @_; my $url = xpand($uri); - print STDERR "URI $uri\n"; + #print STDERR "URI $uri\n"; my $req = HTTP::Request->new("POST" => $url); $req->header('Accept' => 'application/json'); $req->header('Content-Type' => 'application/json; charset=UTF-8');