So I am going through this one type of log where some of the messages are broken up by hyphen (-----) for example:
2015-05-01 10:08:08 [http-request] Level Outbound Message
------------------------
ID: 2
Address: site address
Encoding: UTF-8
<soap: Envelope ...>
<soap: Body>
<...>
</soap:...>
-------------------------------------------
I notice right after the message says "outbound" or "inbound" the starting set of hyphens appear followed by the close hyphens. Yes the starting hyphen line is shorter then the closing.
My question is how would you go about using multiline on this type of log? Its not like a stack trace example. The only pattern I notice is the hyphens. Is there a if this amount of hyphens occur add next line until next set of longer hyphens appear? Thanks.
Mike