class Jekyll::LogAdapter

def info(topic, message = nil, &block)

Returns nothing

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

Public: Print a message
def info(topic, message = nil, &block)
  write(:info, topic, message, &block)
end