/**
 * Description
 * @author tjunghans, Namics AG, www.namics.com
 * @module
 */

/* JSLint Stuff */
/*globals jQuery */

var NX = NX || {};

/**
 * Wrapper for firebug console object
 * @method log
 * @parameter {function} method
 * @paramter {string} output

*/
NX.log = function (output) {

    if (typeof console === 'object' && output) {

        var lsgmsg = '',
            i = 0;
        for (i = 0; i < arguments.length; ++i) {
            lsgmsg += arguments[i];
            if ((i + 1) < arguments.length) {
                lsgmsg += ', ';
            }
        }

        console.log(lsgmsg);

        return true;
    }
    
};