You really got only 2 options: 1. Increase event checking time so that messages "already queued" don't apper too often. or 2. Disable automatic logging for these jobs, and then add custom loggin into notification events enabling start/finish and error events with script type. In the script code the following ChooseCase "@V"event"", END_CHOOSE Case "START" LoagAddMessageEx "INFO", @V"job_id", "@V"job_name"", "Job started" Case "FINISH" LoagAddMessageEx "INFO", @V"job_id", "@V"job_name"", "Job finished" CaseElse "LoagAddMessageEx "INFO", @V"job_id", "@V"job_name"", "Job Error" END CHOOSE: : I have a lot of jobs that stay in a queue for an : extended period of time. My log gets filled up with : messages like "Event is ignored because the job is : already queued." Is it possible to suppress just : this message and not other ones? : Thanks
|