lib/textpow/syntax.rb in textpow1x-1.2.2 vs lib/textpow/syntax.rb in textpow1x-1.2.3
- old
+ new
@@ -14,10 +14,10 @@
def method_missing method, *args, &block
if @proxy ||= proxy
@proxy.send(method, *args, &block)
else
- STDERR.puts "Failed proxying #{@proxy_name}.#{method}(#{args.join(', ')})"
+ STDERR.puts "Failed proxying #{@proxy_name}.#{method}(#{args.join(', ')})" if $DEBUG
end
end
private