class SemanticLogger::Appender::MongoDB

def log(log)

Log the message to MongoDB
def log(log)
  # Insert log entry into Mongo
  collection.insert_one(formatter.call(log, self))
  true
end