view src/implab/components/ConsoleLogChannel.js @ 1:93fb6c09f2e1

minor fixes
author cin
date Fri, 02 Jun 2017 18:15:22 +0300
parents fc2517695ee1
children 00779cb63b12
line wrap: on
line source

define(
    [ "dojo/_base/declare", "../text/format" ],
    function(declare, format) {
        return declare(
            null,
            {
                name : null,

                constructor : function(name) {
                    this.name = name;
                },

                log : function() {
                    console.log(this._makeMsg(arguments));
                },

                warn : function() {
                    console.warn(this._makeMsg(arguments));
                },

                error : function() {
                    console.error(this._makeMsg(arguments));
                },

                _makeMsg : function(args) {
                    return this.name ? this.name + " " +
                        format.apply(null, args) : format.apply(null, args);
                }
            });
    });