Class: Epo::Ops::Logger

Inherits:
Object
  • Object
show all
Defined in:
lib/epo/ops/logger.rb

Overview

Simple logger writing some notifications to standard output.

Class Method Summary collapse

Class Method Details

.log(output) ⇒ Object

Just hands the parameter to puts.



6
7
8
# File 'lib/epo/ops/logger.rb', line 6

def self.log(output)
  puts output
end