12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
/*******************************************************************************

        copyright:      Copyright (c) 2004 Kris Bell. All rights reserved

        license:        BSD style: $(LICENSE)
      
        version:        Initial release: May 2004
        
        author:         Kris

*******************************************************************************/

module tango.util.log.AppendConsole;

private import  tango.io.Console;

private import  tango.util.log.Log;

/*******************************************************************************

        Appender for sending formatted output to the console

*******************************************************************************/

public class AppendConsole : AppendStream
{
        /***********************************************************************
                
                Create with the given layout

        ***********************************************************************/

        this (Appender.Layout how = null)
        {
                super (Cerr.stream, true, how);
        }

        /***********************************************************************
                
                Return the name of this class

        ***********************************************************************/

        override const const(char[]) name ()
        {
                return this.classinfo.name;
        }
}