lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


hi,

In the debug mode of my project, I did a lot log using print(). 
There're many string concats and other calculation in the 
arguments of print func.

In release mode, I assign the print to:
   function dumb_print() end 
to hide the logs.

But the arguments for print are still evaluated, is it possible
 to avoid this overhead?

Best,
hz