Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

console.log will show the object at the last state of execution, not at the state when console.log was called.

I have to clone the object just to output it via console.log to get the state of the object at that line.

How can I change the default behavior of console.log? (Error console in safari, no add-on)

Example:

var test = {a: true}
console.log(test); // {a: false}
test.a = false; 
console.log(test); // {a: false}
share|improve this question
Which console log? In what browser, using (if any) what addon? – TJHeuvel Sep 12 '11 at 14:00
What do you mean? Can you post an example? – Zirak Sep 12 '11 at 14:00
Just the error console in safari. No addon. – Wesley Sep 12 '11 at 14:01

5 Answers

up vote 11 down vote accepted

I think you're looking for console.dir().

console.log() doesn't do what you want because it prints a reference to the object, and by the time you pop it open, it's changed. console.dir prints a directory of the properties in the object at the time you call it.

share|improve this answer
3  
For me in Chrome13 no difference between console.log and console.dir – Andrew D. Sep 12 '11 at 14:24
Hm, that's surprising- it works in Firebug. I had thought it was the same in Webkit. – evan Sep 12 '11 at 15:12

What I usually do if I want to see it's state at the time it was logged is I just convert it to a JSON string.

console.log(JSON.stringify(a));
share|improve this answer
Great, that was a nice hint for me : I just had to parse it again to have my object right in the console. function odump(o){ console.log($.parseJSON(JSON.stringify(o))); } – Chris Mar 29 at 19:37

That > Object in the console, isn't only showing the current state. It actually is deferring reading the object and it's properties until you expand it.

For example,

var test = {a: true}
console.log(test);
setTimeout(function () {
    test.a = false; 
    console.log(test);
}, 4000);

Then expand the first call, it will be correct, if you do it before the second console.log returns

share|improve this answer

You can create a snapshot of an object at a certain point in time with jQuery.extend

console.log($.extend({}, test));
share|improve this answer

using Xeon06's hint, you may parse his JSON in an object, and here is the log function I now use to dump my objects :

function odump(o){
   console.log($.parseJSON(JSON.stringify(o)));
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.