class Jekyll::LogAdapter

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

Returns nothing

message - the message detail (can be omitted)
topic - the topic of the message, e.g. "Configuration file", "Deprecation", etc.

Public: Print an error message and immediately abort the process
def abort_with(topic, message = nil, &block)
  error(topic, message, &block)
  abort
end