/**
 * jQuery Console Log Plugin
 * 
 * Copyright 2009, nojimage (http://php-tips.com/)
 *
 * Licensed under The MIT License
 * Redistributions of files must retain the above copyright notice.
 * 
 * @filesource 
 * @version    1.0
 * @author     nojimage <nojimage at gmail.com>
 * @copyright  2009 nojimage
 * @license    http://www.opensource.org/licenses/mit-license.php The MIT License
 * @link       http://php-tips.com/
 * @modifiedby nojimage <nojimage at gmail.com>
 * 
 */
(function($)
{
    $.extend( {
        "log" : function(message)
        {
            if (message) {
                try {
                    console.log(message);
                    return true;
                } catch (e) {}
                
                return false;
            }
        }
    });
})(jQuery);
