fix logging

This commit is contained in:
Konstantin Haase 2012-12-17 20:06:45 +01:00
parent b3b5476076
commit f878eee987

View File

@ -380,8 +380,10 @@ function doYouHave(feature, yes, no) {
} }
function yesIndeed(msg, callback) { function yesIndeed(msg, callback) {
return function() {
if(console && console.log) console.log(msg); if(console && console.log) console.log(msg);
return callback; return callback();
}
} }
function after(value) { function after(value) {