Method: Guard::UI.debug

Defined in:
lib/guard/ui.rb

.debug(message, options = {}) ⇒ Object

Show a debug message that is prefixed with DEBUG and a timestamp.

Parameters:

  • message (String)

    the message to show

  • options (Hash) (defaults to: {})

    a customizable set of options

Options Hash (options):

  • reset (Boolean)

    whether to clean the output before

  • plugin (String)

    manually define the calling plugin



119
120
121
# File 'lib/guard/ui.rb', line 119

def debug(message, options = {})
  _filtered_logger_message(message, :debug, :yellow, options)
end