in reply to Re^4: Module for Printing Line Numbers in Debug?
in thread Module for Printing Line Numbers in Debug?
It doesn't look like you will pass any arguments to log(), caller seems to provide anything you are looking for.
If you later check for production environment and set
then it will be optimized and not appear in the opcodes.sub log {}
If you are still worried, use a name you can easily find and delete, like __LOG__, even a source filter doing this should be very safe.¹
But please search the archives for older discussions, this is certainly not the first one.
Cheers Rolf
¹) or even better, use Damian's approach from Smart::Comments and use a source filter only in testing mode to enable log() by deleting the '#' with s/;#LOG/;LOG;/g
s/a/b/ ;#LOG
|
|---|