Mendix Logging

0
When logging messages within a microflow is there an easy way to tag each message so that when looking in the logs you can easily group all the log messages associated with a given event? I have developed a REST service for a cient to call but with the current implementation it is nearly impossible to trace a request through the logs from beginning to end because as more requests comes in additional logs are written and mixed together.
asked
2 answers
1

Are you using your own created log messages or relying on the ones created by Mendix? If you create your own you can of course just set the “log node name” which will allow you to filter it. Might I suggest looking at the “Logging Module” in the app store. This will put your logs in a datagrid that you can filter however you’d like 

answered
0

If you mean you have many of the same requests coming in, I suppose you could create some sort of Unique Identifier at the start of the microflow, which can then be used in all log messages for that particular transaction.

answered