Rclone log timezone

STOP and READ USE THIS TEMPLATE NO EXCEPTIONS - By not using this, you waste your time, our time and really hate puppies. Please remove these two lines and that will confirm you have read them.

What is the problem you are having with rclone?

i want for log to show time same with my timezone(i use vps)

Run the command 'rclone version' and share the full output of the command.

rclone-v1.68.0-windows-amd64

Which cloud storage system are you using? (eg Google Drive)

google drive

The command you were trying to run (eg rclone copy /tmp remote:tmp)

rclone mount aa: /root/media/1p --allow-other --allow-non-empty --daemon --vfs-cache-max-age 5h --vfs-cache-max-size 10G --vfs-cache-mode full --cache-dir=/rootjellyfin/cache --log-level INFO --log-file /root/media/log/rclonelog.log

Please run 'rclone config redacted' and share the full output. If you get command not found, please make sure to update rclone.

Paste config here

A log from the command that you were trying to run with the -vv flag

Paste  log here

me too,
i often set the timezone of the vps to match my local timezone.
is that an option in your case?

probably i can. suggest me better way to do it
which one is easy?

on windows, i have used https://www.nirsoft.net/utils/run_as_date.html

on linux, can use
https://commandmasters.com/commands/faketime-linux/

If you are running on Linux then set the TZ environment variable

Before BST

$ rclone version -vv
2024/10/03 10:34:55 DEBUG : rclone: Version ...

Set TZ

$ export TZ="America/Los_Angeles"

After

$ rclone version -vv
2024/10/03 02:36:04 DEBUG : rclone: Version...

You can look up valid values for TZ in the wikipedia article on timezones

1 Like