# File lib/logging/appenders/console.rb, line 69
    def initialize( *args )
      opts = Hash === args.last ? args.pop : {}
      name = args.empty? ? 'stderr' : args.shift

      super(name, STDERR, opts)
    end