How to check rclone logs and what files are uploading?

Hi, thank you so much for quick reply. Is there anyway I can add the log file like that in the service file?

--log-level INFO --log-file "/home/istvan/.config/rclone/rclone.log"

# /etc/systemd/system/rclone.service
[Unit]
Description=Rclone VFS Mount
After=network-online.target

[Service]
User=1000
Group=1000
Type=notify
#ExecStartPre=/bin/sleep 10
ExecStart=/usr/bin/rclone mount \
  --allow-other \
  --buffer-size=64M \
  --config=/home/istvan/.config/rclone/rclone.conf \
  --log-level INFO --log-file "/home/istvan/.config/rclone/rclone.log" \
  --dir-cache-time=168h \
  --drive-chunk-size=64M \
  --drive-skip-gdocs \
  --fast-list \
  --rc \
  --rc-web-gui \
  --syslog \
  --timeout=10m \
  --umask=002 \
  --vfs-read-chunk-size-limit=2048M \
  --vfs-read-chunk-size=64M \
  -v \
  google: /mnt/remote
ExecStop=/bin/fusermount -uz /mnt/remote
Restart=on-abort
RestartSec=5
StartLimitInterval=60s
StartLimitBurst=3

[Install]
WantedBy=default.target