2014-03-31 09:40 UTC
I have a self-recursive loop, based on Freds suggestion:
(defun c:loop_for_jobs ()
(to_something_in_this_code)
(dcl_DelayedInvoke (* 1000 dwgr_waitseconds) "(c:loop_for_jobs)")
)
Everything is fine, but every "invoke" returns a
Command: (c:loop_for_jobs)
Command: (c:loop_for_jobs)
Command: (c:loop_for_jobs)
Command: (c:loop_for_jobs)
Command: (c:loop_for_jobs)
...
For a long time loop now I run into a cosmetic problem with a full log-file ...
Is there a way to run it in a "silent mode", to suppress the message?
Thanks
Peter
(defun c:loop_for_jobs ()
(to_something_in_this_code)
(dcl_DelayedInvoke (* 1000 dwgr_waitseconds) "(c:loop_for_jobs)")
)
Everything is fine, but every "invoke" returns a
Command: (c:loop_for_jobs)
Command: (c:loop_for_jobs)
Command: (c:loop_for_jobs)
Command: (c:loop_for_jobs)
Command: (c:loop_for_jobs)
...
For a long time loop now I run into a cosmetic problem with a full log-file ...
Is there a way to run it in a "silent mode", to suppress the message?
Thanks
Peter