Current infolog is showing only last 500 messages and deleting all other messages
Consider the following job
for(int i =1; i <= 502; i++) error(strFmt("line error %1", i));
for(int i =1; i <= 502; i++) info(strFmt("line info %1", i));
it will display only last 500 messages and status will be info instead of error(it can be the real case for example if we have 1000 lines in journal and first 500 contains an error – user when running journal check will see only last 500 messages and did not see an errors)
The following problem with the current implementation:
-no indication that error happened
-not all messages are displayed
-not able to easily copy all these messages to clipboard
-Message limit should be extended(let’s say to 10000) and if the message limit is reached error should be generated to inform user that not all messages are displayed
Users are definitely will not be happy with this "new infolog" as it is a base function(and it worked fine in AX2012)
