Luis
April 7, 2020, 3:13pm
1
I was using version 1.40 and the log said:
Transferred: 11.601M / 11.601 MBytes, 100%, 8.107 kBytes/s, ETA 0s
Errors: 0
Checks: 1102174 / 1102174, 100%
Transferred: 10 / 10, 100%
Elapsed time: 24m25.2s
now, with the new version the item "Error" is disappeared
Transferred: 418.439M / 418.439 MBytes, 100%, 873.198 kBytes/s, ETA 0s
Checks: 1103093 / 1103093, 100%
Transferred: 619 / 619, 100%
Elapsed time: 8m10.7s
is there a way to list it again?
thanks
Luis
asdffdsa
(jojothehumanmonkey)
April 7, 2020, 3:16pm
2
hello,
i think that was changed a while back,
that Error: does not display anymore.
Luis
April 7, 2020, 3:20pm
3
I did the upgrade and now I have 1.51
but the item error is not listing any more and I have an script that uses the item error to send emails with the output log
sorry for my poor english
asdffdsa
(jojothehumanmonkey)
April 7, 2020, 3:21pm
4
i also have a script that looks for errors.
what i do is use --log-level=DEBUG.
and then i parse the log for text of ERROR :
what language do you use for the script?
bash
python
or what?
asdffdsa
(jojothehumanmonkey)
April 7, 2020, 3:28pm
6
yes, i work with windows but i use python.
perhaps you can try what i do.
--log-level=DEBUG
and search for
ERROR:
Luis
April 7, 2020, 3:30pm
7
I tried
I cant see ERROR
2020/04/07 12:29:31 INFO : Waiting for deletions to finish
2020/04/07 12:29:31 INFO :
Transferred: 0 / 0 Bytes, -, 0 Bytes/s, ETA -
Checks: 10 / 10, 100%
Elapsed time: 0.0s
2020/04/07 12:29:31 DEBUG : 5 go routines active
2020/04/07 12:29:31 DEBUG : rclone: Version "v1.51.0" finishing with parameters
["rclone" "sync" "c:\soft\rclone" "dpbxL:Bkps\Plw\soft\rclone" "--exclude"
"*.txt" "--log-level=DEBUG"]
asdffdsa
(jojothehumanmonkey)
April 7, 2020, 3:35pm
8
you need to change your script.
you need to use a log file and parse the log file to look for errors.
you would need to search for ERROR :
if there was an error in the log, it would look like this
2020/03/26 17:26:00 ERROR : kdbx.20200326.172559.7z: Failed to copy: s3 upload: 500 Internal Server Error: <?xml version="1.0" encoding="UTF-8"?>
Luis
April 7, 2020, 3:41pm
9
ok, I am going to modify the batchs if it is not possible for the word errors to be listed again
thankyou for your help!