All Downloads are FREE. Search and download functionalities are using the official Maven repository.

package.src.lib.loggers.js Maven / Gradle / Ivy

The newest version!
'use strict';

/* eslint-disable no-console */

var dfltConfig = require('../plot_api/plot_config').dfltConfig;

var notifier = require('./notifier');

var loggers = module.exports = {};

/**
 * ------------------------------------------
 * debugging tools
 * ------------------------------------------
 */

loggers.log = function() {
    var i;

    if(dfltConfig.logging > 1) {
        var messages = ['LOG:'];
        for(i = 0; i < arguments.length; i++) {
            messages.push(arguments[i]);
        }
        console.trace.apply(console, messages);
    }

    if(dfltConfig.notifyOnLogging > 1) {
        var lines = [];
        for(i = 0; i < arguments.length; i++) {
            lines.push(arguments[i]);
        }
        notifier(lines.join('
'), 'long'); } }; loggers.warn = function() { var i; if(dfltConfig.logging > 0) { var messages = ['WARN:']; for(i = 0; i < arguments.length; i++) { messages.push(arguments[i]); } console.trace.apply(console, messages); } if(dfltConfig.notifyOnLogging > 0) { var lines = []; for(i = 0; i < arguments.length; i++) { lines.push(arguments[i]); } notifier(lines.join('
'), 'stick'); } }; loggers.error = function() { var i; if(dfltConfig.logging > 0) { var messages = ['ERROR:']; for(i = 0; i < arguments.length; i++) { messages.push(arguments[i]); } console.error.apply(console, messages); } if(dfltConfig.notifyOnLogging > 0) { var lines = []; for(i = 0; i < arguments.length; i++) { lines.push(arguments[i]); } notifier(lines.join('
'), 'stick'); } };




© 2015 - 2024 Weber Informatics LLC | Privacy Policy