diff --git a/lib/NGCP/Panel/Controller/Sound.pm b/lib/NGCP/Panel/Controller/Sound.pm index 0dfe45c909..e00b1a79b7 100644 --- a/lib/NGCP/Panel/Controller/Sound.pm +++ b/lib/NGCP/Panel/Controller/Sound.pm @@ -277,7 +277,6 @@ sub handles_download :Chained('handles_base') :PathPart('download') :Args(0) { $filename =~ s/\.\w+$/.wav/; my $data; - say ">>>>>>>>>>>>>>>>> download ".$file->filename." with codec ".$file->codec; if($file->codec ne 'WAV') { try { $data = NGCP::Panel::Utils::Sounds::transcode_data( diff --git a/lib/NGCP/Panel/Utils/Statistics.pm b/lib/NGCP/Panel/Utils/Statistics.pm index 30cd891854..b345771540 100644 --- a/lib/NGCP/Panel/Utils/Statistics.pm +++ b/lib/NGCP/Panel/Utils/Statistics.pm @@ -22,8 +22,6 @@ sub get_host_list { ->maxdepth( 1 ) ->in('/var/lib/collectd/rrd'); @hosts = sort {$a cmp $b} apply { s|.*/|| } @hosts; - print ">>>>>>>>>>>>>>> get_host_list:\n"; - use Data::Printer; p @hosts; return \@hosts; } @@ -35,8 +33,6 @@ sub get_host_subdirs { ->maxdepth( 1 ) ->in('/var/lib/collectd/rrd/' . $host); @dirs = sort {$a cmp $b} apply { s|.*/|| } @dirs; - print ">>>>>>>>>>>>>>> get_host_subdirs:\n"; - use Data::Printer; p @dirs; return \@dirs; } @@ -72,8 +68,6 @@ sub get_rrd { return $content; } - - 1; # vim: set tabstop=4 expandtab: