Hi Pedro,
It seems this could be related that the timezone you have in this machine is the default one (UTC +0000). You can check this by running:
timedatectl
The output will be similar to this one:
Local time: Mon 2021-02-15 13:34:26 UTC
Universal time: Mon 2021-02-15 13:34:26 UTC
RTC time: Mon 2021-02-15 13:34:22
Time zone: UTC (UTC, +0000)
NTP enabled: yes
NTP synchronized: yes
RTC in local TZ: no
DST active: n/a
In order to set the time of your region, (which I suppose is GTM -3), just run the following lines:
timedatectl set-timezone "America/Argentina/Buenos_Aires"
Now, your output, if you run timedatectl, should be similar to this one:
Local time: Mon 2021-02-15 10:43:24 -03
Universal time: Mon 2021-02-15 13:43:24 UTC
RTC time: Mon 2021-02-15 13:43:20
Time zone: America/Argentina/Buenos_Aires (-03, -0300)
NTP enabled: yes
NTP synchronized: yes
RTC in local TZ: no
DST active: n/a
Let me know if the logs are arriving with the right timestamp!
Waiting for your reply,
Yana.