class Footprint::Log::OutFile

Class that extends the Footprint::Log::Basic and adds a write method which logs on info level.

This Class can be used as a File instance to write in log.

Public Instance Methods

write(message) click to toggle source

Synopsis

write 'My dummy info log message'

Args

message

The log message. A String or Exception.

Return

true if successful, false otherwise.

Description

Logs the message on info level on logger.

# File lib/footprint/log/out_file.rb, line 32
def write(message)
  info message
end