Method: Jekyll::LogAdapter#warn

Defined in:
lib/ngage/jekyll/log_adapter.rb

#warn(topic, message = nil, &block) ⇒ Object

Public: Print a message

topic - the topic of the message, e.g. “Configuration file”, “Deprecation”, etc. message - the message detail

Returns nothing



75
76
77
# File 'lib/ngage/jekyll/log_adapter.rb', line 75

def warn(topic, message = nil, &block)
  write(:warn, topic, message, &block)
end