Hello,
is there a way to increase the number of errors the error log accepts before "maxing" out?
I need to have a comprehensive list of the errors being through (not just the first 1000).
Thanks!
-DNA
Increasing the size of the process error log
-
- Site Admin
- Posts: 6645
- Joined: Sun May 11, 2008 2:30 am
- OLAP Product: TM1
- Version: PA2.0.9.18 Classic NO PAW!
- Excel Version: 2013 and Office 365
- Location: Sydney, Australia
- Contact:
Re: Increasing the size of the process error log
Assign a new value to the MinorErrorLogMax TI process variable in the Prolog.DNA_DC wrote:Hello,
is there a way to increase the number of errors the error log accepts before "maxing" out?
I need to have a comprehensive list of the errors being through (not just the first 1000).
This TurboIntegrator local variable sefines the number of minor errors that will be written to the TM1ProcessError.log file during process execution. If this variable is not defined in the process, the default number of minor errors written to the log file is 1000.
Syntax
MinorErrorLogMax=N;
Arguments
N Value indicating the number of errors that should be written to the log file.
Specify an integer greater than zero to set the maximum number of errors written to the log file.
Specify a value of 0 to log no errors during process execution.
Specify a value of -1 to allow an unlimited number of minor errors to be written to the log file.
Examples
MinorErrorLogMax=750; The log file will accept up to 750 errors.
MinorErrorLogMax=0; No errors will be written to the log file.
MinorErrorLogMax=-1; No limit on the number of errors written to the log file.
"To them, equipment failure is terrifying. To me, it’s 'Tuesday.' "
-----------
Before posting, please check the documentation, the FAQ, the Search function and FOR THE LOVE OF GLUB the Request Guidelines.
-----------
Before posting, please check the documentation, the FAQ, the Search function and FOR THE LOVE OF GLUB the Request Guidelines.