Class: RubyDep::Logger
- Inherits:
-
Object
- Object
- RubyDep::Logger
- Defined in:
- lib/ruby_dep/logger.rb
Overview
TODO: not used, but kept for the sake of SemVer TODO: remove in next major version
Instance Method Summary collapse
-
#initialize(device, prefix) ⇒ Logger
constructor
A new instance of Logger.
- #notice(msg) ⇒ Object
- #warning(msg) ⇒ Object
Constructor Details
Instance Method Details
#notice(msg) ⇒ Object
44 45 46 |
# File 'lib/ruby_dep/logger.rb', line 44 def notice(msg) @device.puts @prefix + msg end |
#warning(msg) ⇒ Object
40 41 42 |
# File 'lib/ruby_dep/logger.rb', line 40 def warning(msg) @device.puts @prefix + msg end |