class ROM::Cassandra::Migrations::Logger

Default Logger for the migrator

@example

logger = Logger.new
logger.info "some text"
# => some text

Public Class Methods

new() click to toggle source

@private

Calls superclass method
# File lib/rom/cassandra/migrations/logger.rb, line 19
def initialize
  super $stdout
  self.formatter = proc { |_, _, _, message| "#{message}\n" }
end