function log(tobelogged){
if (debugging){
c.log(arguments);
c.log(arguments.toString());
c.log(tobelogged);
};
};
and then
log(someObject);
and I want to response
'someObject'
'whatever is in someObject'
I tried toString() above but clearly I'm missing something. How do you get the 'name' of what's sent to the function? The example uses oni apollo stratified sjs in the browser but I don't think it matters here. Anyy ideas?
