Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Server Event Log Issue

Hi All,

I have made my own version of the Governance Dashboard but I encounter a problem with the current Events.Log. I noticed that if the message contained a close bracket ) the log moved all the text after to a new line.

For Example below

Server Error.JPG

Meaning the messages are missing part of the detail.

Has anyone else encountered this or have a fix for this problem?

Thanks

1 Reply
marcus_sommer

I think it's a bug within the event-log that some entries contain a CR LF within a record. You could try to replace these false chars with additionally loadings and/or external scripts with something like:

replace(Field, chr(10) & chr(13) & ')', ')')

but I think it will be a rather ugly solutions. If you didn't need this automatically you could also open the log-file with an txt-editor (maybe notepad ++) and use the feature of search and replace (CTRL + h).

- Marcus