when I run this code: ``` (defun nestedFunction () (printf "Inside nested function\n") (exit(1)) (printf "This will not be printed\n") ) (defun mainFunction () (printf "Inside main function\n") (nestedFunction) (printf "This will also not be printed\n") ) if(errset({ (mainFunction) } t) then exit(0) else exit(1) ) ``` Using this cmd-line: virtuoso -nographE -replay test.il -cdslib my.cds.lib -log my.log I get output like this, which is driving me insane due to the "noise" of repeating the input I am feeding: ``` ### license and version info I am skipping for brevity \i (defun nestedFunction () \i (printf "Inside nested function\n") \# [10:47:58.352074] Periodic Lic check successful \# [10:47:58.352096] Feature usage summary: \# [10:47:58.352096] 111 \# [10:47:58.352097] Virtuoso_Adv_Node_Framework \i (exit(1)) \i (printf "This will not be printed\n") \i ) \t nestedFunction \p > \i (defun mainFunction () \i (printf "Inside main function\n") \i (nestedFunction) \i (printf "This will also not be printed\n") \i ) \t mainFunction \p > \i if(errset({ \i (mainFunction) \i } t) then \i exit(0) \i else \i exit(1) \i ) \o Inside main function \o Inside nested function \e *Error* eval: not a function - exit(1) \o ### license and memory info I am skipping for brevity ``` How do I disable printing \i input lines to the log file?
↧