✏️Add more debug when uploading/downloading to/from Nextcloud

This commit is contained in:
SebClem 2020-11-17 15:28:59 +01:00
parent eed5fe0eb8
commit 3941262e8c

View File

@ -216,6 +216,7 @@ class WebdavTools {
if (conf.ssl === "true") {
options["https"] = { rejectUnauthorized: conf.self_signed === "false" };
}
logger.debug(`...URI: ${this.baseUrl + encodeURI(path)} rejectUnauthorized: ${options["https"]["rejectUnauthorized"]}`);
got.stream
.put(this.baseUrl + encodeURI(path), options)
@ -309,7 +310,7 @@ class WebdavTools {
if (conf.ssl === "true") {
options["https"] = { rejectUnauthorized: conf.self_signed === "false" };
}
logger.debug(`...URI: ${this.baseUrl + encodeURI(path)} rejectUnauthorized: ${options["https"]["rejectUnauthorized"]}`)
pipeline(
got.stream.get(this.baseUrl + encodeURI(path), options).on("downloadProgress", (e) => {
let percent = Math.round(e.percent * 100) / 100;