How do you parse the below events?
The events looks like :
2018-12-04 01:51:08.330, LogDate="2018-12-04 01:51:08.33", SessionId="abc", MachineName="xyz", LoggerName="def", LogLevel="DEBUG", MessageId="DumpCacheNames", Message="def", ApplicationId="fgd", EndpointStack="abc", LogInsertDate="date"
I need to show events as:
"2018-12-04 01:51:08.330"
SessionId=abc
MachineName=xyz
LoggerName=def
LogLevel=DEBUG
MessageId=DumpCacheNames
Message=def
ApplicationId=fgd
EndpointStack=abc
LogInsertDate=date
Thanks !
... View more