cancel
Showing results for 
Search instead for 
Did you mean: 

Message Processing Log does not show new messages, previous message have the wrong time zone

former_member537554
Participant
0 Kudos

Hello,

Currently we face two issues on our development tenant:

  • The Message Processing Log does not update anymore, new runs of IFlows are not showing
  • Previous log messages had the wrong timezone, GMT in stead of UTC +2

The IFlows are still working: I tested with a flow which creates 3 MPL attachments and emails afterwards, I receive the emails but cannot see the MPL attachments or messages.

The last time MPL messages showed were on 06:44 (08:44 UTC+2)

Any ideas how to process?

Thanks in advance!

Bram

Accepted Solutions (0)

Answers (1)

Answers (1)

Maik
Explorer
0 Kudos

In regards to your first issue you should check the set log level in "Manage Integration Content" for the respective integration flow. Please find more information in my blog.

In regards to your second issue it is difficult to answer based on the given information. In general all timezone information in the UI relate to your local time. Timestamps in log files relate to UTC.

former_member537554
Participant
0 Kudos

Hello Maik,

Thanks for responding!

I figured it out myself: I was experiencing with a Groovy script that had the following line in it:

TimeZone.setDefault(TimeZone.getTimeZone('Europe/Amsterdam'));

What it does is setting the timezone for the whole JVM to UTC+2. This is not expected, so an additional timezone correction is done resulting in UTC+4. So the log messages began to pop up in the future, I found out when I made a custom filtering on the MPL.

I restored it by executing the IFlow once with the following line:

TimeZone.setDefault(TimeZone.getTimeZone('Etc/UTC'));

Bottom line is: do not use TimeZone.setDefault, and use below link when correcting for timezones:

https://blogs.sap.com/2018/02/28/using-local-time-zone-for-target-file-name-on-cloud-platform-integr...

Thanks for helping out!

Bram