Module: Watchmob::Log

Extended by:
Log
Included in:
Log
Defined in:
lib/watchmob/log.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#outputObject

Returns the value of attribute output.



25
26
27
# File 'lib/watchmob/log.rb', line 25

def output
  @output
end

Instance Method Details

#error(msg) ⇒ Object



5
6
7
# File 'lib/watchmob/log.rb', line 5

def error(msg)
  show msg
end

#info(msg) ⇒ Object



9
10
11
# File 'lib/watchmob/log.rb', line 9

def info(msg)
  show msg
end

#show(msg) ⇒ Object



30
31
32
33
34
# File 'lib/watchmob/log.rb', line 30

def show(msg)
  @print_mutex.synchronize do
    output.puts(msg)
  end
end

#waiting(msg) ⇒ Object



13
14
15
16
17
18
19
20
21
22
23
# File 'lib/watchmob/log.rb', line 13

def waiting(msg)
  show "#{msg}..."
  begin
    yield
  rescue Exception => e
    show "  #{msg} -> #{e.class.to_s}"
    raise
  else
    show "  #{msg} -> OK"
  end
end