Click here to Skip to main content
15,885,366 members
Articles / DevOps / Testing
Tip/Trick

How to Alter console.log

Rate me:
Please Sign up or sign in to vote.
4.67/5 (3 votes)
31 Oct 2013CPOL 12.7K   2   2
Adding stuff to your logs.

Introduction

If you need to alter Node.JS server or JavaScript client console.log function w/o the vsprintf library, dynamically build the util.format command and execute with JavaScript eval().

Using the Code

Place the following code in your file to replace the default console.log function:

JavaScript
util = require('util');
console.log = function(a) {
    if (arguments.length>1) {
        var cmd = 'util.format(';
        for (i in arguments) {
            if (i>0)
                cmd += ',';
            cmd += 'arguments['+i+']';
        }
        cmd += ')';
        util.log(eval(cmd));
    }
    else
        util.log(a);
};

This is much better:

JavaScript
util = require('util');
console.log = function() {
    process.stdout.write((new Date()).toISOString().substring(0,19).replace('T', ' ')+': ');
    process.stdout.write(util.format.apply(this, arguments) + '\n');
};

History

  • September 15, 2013 - First version.
  • October 31, 2013 - Found a better way to do the same thing. 

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
R%S
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
Suggestionwhy dont use join ? Pin
h.petersen16-Sep-13 6:11
h.petersen16-Sep-13 6:11 
GeneralRe: why dont use join ? Pin
R%S16-Sep-13 8:48
R%S16-Sep-13 8:48 
It doesn't work that way with Node.JS, I have tried this before and again after your comment. I agree that eval is evil, if you have a code that works, please post it.
R%S

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.