Method: Yt::Models::Configuration#developing?

Defined in:
lib/yt/models/configuration.rb

#developing?Boolean

Returns whether the logging output is extra-verbose. Useful when developing (e.g., to print the curl of every request).

Returns:

  • (Boolean)

    whether the logging output is extra-verbose. Useful when developing (e.g., to print the curl of every request).



59
60
61
# File 'lib/yt/models/configuration.rb', line 59

def developing?
  log_level.to_s.in? %w(devel)
end