From 6d33cad4dfbd3741492f500308484976dc9e035e Mon Sep 17 00:00:00 2001 From: Antonio Terceiro Date: Thu, 19 May 2022 18:19:14 -0300 Subject: Channel: drop debugging statement After upgrading to net-ssh 7.0.0, I get several lines like `E:TERM V:xterm` printed in the terminal when connecting to hosts. I'm assuming this slipped by mistake in commit 5e79b6687771 ("Fixed integration test opensshd kill") --- lib/net/ssh/connection/channel.rb | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/net/ssh/connection/channel.rb b/lib/net/ssh/connection/channel.rb index 6fcf790..efe6c94 100644 --- a/lib/net/ssh/connection/channel.rb +++ b/lib/net/ssh/connection/channel.rb @@ -686,7 +686,6 @@ module Net # # channel.set_remote_env foo: 'bar', baz: 'whale' def set_remote_env(env) - env.each { |key, value| puts "E:#{key} V:#{value}" } env.each { |key, value| self.env(key, value) } end end -- cgit v1.2.1