Disable Message Log Reporting

Post Reply
Jennifer Good
Posts: 10
Joined: Fri Dec 05, 2008 4:55 pm

Disable Message Log Reporting

Post by Jennifer Good »

Hi,

Is there any way to prevent a chore from writing to the message log when it executes? I have a chore that runs frequently, and it really clogs up the message log with extraneous information that the chore ran succesfully. Ideally, I would just like to see a message if the chore didn't execute correctly.

I have tried the following in the Prolog:
SetChoreVerboseMessages(0);

NumericGlobalVariable('ProcessReturnCode');
If(ProcessReturnCode=ProcessExitSeriousError());
ASCIIOutput('K:\Jennifer G\TM1 Maintenance\process_return_value.txt', 'Process exited with serious errors at', TIME, 'on', TODAY);
endif;

And I still get 3 lines on the message log every time the chore executes.

Thanks for any suggestions.

Jennifer
User avatar
Martin Ryan
Site Admin
Posts: 1988
Joined: Sat May 10, 2008 9:08 am
OLAP Product: TM1
Version: 10.1
Excel Version: 2010
Location: Wellington, New Zealand
Contact:

Re: Disable Message Log Reporting

Post by Martin Ryan »

A similar question was asked a while ago here. Unfortunately the short answer is 'no', but you'll find a couple of suggestions in that post.

Cheers,
Martin
Please do not send technical questions via private message or email. Post them in the forum where you'll probably get a faster reply, and everyone can benefit from the answers.
Jodi Ryan Family Lawyer
Jennifer Good
Posts: 10
Joined: Fri Dec 05, 2008 4:55 pm

Re: Disable Message Log Reporting

Post by Jennifer Good »

Thanks for pointing me in the right direction - sorry I missed the other post.
Post Reply