diff options
author | David Phillips <david@sighup.nz> | 2018-09-11 22:11:20 +1200 |
---|---|---|
committer | David Phillips <david@sighup.nz> | 2018-09-11 22:11:20 +1200 |
commit | 7dc57285d61f74870ab7d423c790dc1d01f7a23b (patch) | |
tree | a8adc97079333df8a11d4ca69629ab30dfb6e1bc /Plugin/Map.pm | |
parent | dee7707befbf7c4f75a69bec289c2adf042d67e5 (diff) | |
download | idalius-7dc57285d61f74870ab7d423c790dc1d01f7a23b.tar.xz |
Remove debug prints
Diffstat (limited to 'Plugin/Map.pm')
-rw-r--r-- | Plugin/Map.pm | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/Plugin/Map.pm b/Plugin/Map.pm index 2e811cf..25d100d 100644 --- a/Plugin/Map.pm +++ b/Plugin/Map.pm @@ -67,10 +67,6 @@ sub map { return "Syntax: map command [item1, item2, ...]" unless $command and $subjects_raw; my ($e, @subjects) = parse_list($subjects_raw); - if ($e) { - print "It's error"; - } - $logger->("Error: $e"); return $e if $e; my @results = map { $run_command->("$command $_", $who, $where) } @subjects; |