// js/util/log/appender/Console.js
//
// Created: 03.02.2011 (pj)
///////////////////////////////////////////////////////////////////////////////



pj.log.appender.Console = function()
{
    this.constructor = pj.log.appender.Abstract;
    this.constructor();

    this.log = function(message)
    {
        if (typeof console === "undefined" || typeof console.log === "undefined") return;
        console.log(message);
    };
};
