Parent

SSHKit::Logger::SSHKit::Logger::Net::SSH::LogLevelShim

Attributes

output[R]

Public Class Methods

new(output) click to toggle source
# File lib/sshkit/backends/netssh.rb, line 22
def initialize(output)
  @output = output
end

Public Instance Methods

debug(args) click to toggle source
# File lib/sshkit/backends/netssh.rb, line 25
def debug(args)
  output << LogMessage.new(Logger::TRACE, args)
end
error(args) click to toggle source
# File lib/sshkit/backends/netssh.rb, line 28
def error(args)
  output << LogMessage.new(Logger::ERROR, args)
end
lwarn(args) click to toggle source
# File lib/sshkit/backends/netssh.rb, line 31
def lwarn(args)
  output << LogMessage.new(Logger::WARN, args)
end

[Validate]

Generated with the Darkfish Rdoc Generator 2.