I am attempting to find a way of padding out fields within the enterprise logger library Text Formatter.
The current format of my log file entries is as follows:
02/01/2015 15:36:43.946|Information|Test Information Message 02/01/2015 15:36:43.946|Error|Test Error Message
However for ease of readability in a text based viewer like notepad, I would like them to be formatted as follows:
02/01/2015 15:36:43.946|Information|Test Information Message 02/01/2015 15:36:43.946|Error |Test Error Message
Is this something that can be achieved in the configuration of the tokens or would a custom formatter be needed and if so are there any good examples that would give me a start point for what I am trying to achieve.
Also is there anyway to display a single value from the extended properties collection within a log entry?