http://www.perlmonks.org?node_id=1229587


in reply to Re^2: Array of Hashes
in thread Array of Hashes

Hi Grandfather, because I would use

say()
but didn't want to introduce that change in my comment.

And because usually I am doing

$log->debug(sprintf 'format', @values)
or even
$msg = sprintf 'format', @values; $DEBUG && say $msg && $log->debug($msg);

Basically, I've never used printf alone in the last 20 years, because it does not meet my needs.


The way forward always starts with a minimal test.