Debugging ... little tweaks that perhaps can be useful

Sorry ... not working (here)

node.warn('Foo speaking: ${config}');

image

And this as expected:

node.warn('Foo speaking: '+config);

image

and what I normaly do, nice object view but two messages:

node.warn('Foo speaking:');
node.warn(config);

image

this works but that's not the way to do it, right?

console.log('Foo speaking:',config);

image