Method: YARD::Logger#debug
- Defined in:
- lib/yard/logging.rb
#debug(*args) ⇒ Object
Changes the debug level to DEBUG if $DEBUG is set and writes a debugging message.
26 27 28 29 |
# File 'lib/yard/logging.rb', line 26 def debug(*args) self.level = DEBUG if $DEBUG super end |