Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/desktop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoralex-z <blackslayer4@gmail.com>2022-10-28 23:21:44 +0300
committeralex-z <blackslayer4@gmail.com>2022-10-28 23:21:44 +0300
commit99e2706ee60cc2df7a1bab99ce822803d243b833 (patch)
tree4a867ced972b0cbf63eacaad99c14c09f07fffcf
parentda61cffbb4a4496012e93ddadcf1ef90894edd84 (diff)
Log PROPFIND body properly.feature/add-logs-for-remote-discovery
Signed-off-by: alex-z <blackslayer4@gmail.com>
-rw-r--r--src/libsync/networkjobs.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libsync/networkjobs.cpp b/src/libsync/networkjobs.cpp
index 2a4741499..a48b3951e 100644
--- a/src/libsync/networkjobs.cpp
+++ b/src/libsync/networkjobs.cpp
@@ -385,10 +385,10 @@ void LsColJob::start()
buf->setData(xml);
buf->open(QIODevice::ReadOnly);
if (_url.isValid()) {
- qCInfo(lcLsColJob) << "[DEBUG_ETAG] Sending PROPFIND request to url: " << _url.toString() << " with body: " << buf;
+ qCInfo(lcLsColJob) << "[DEBUG_ETAG] Sending PROPFIND request to url: " << _url.toString() << " with body: " << xml;
sendRequest("PROPFIND", _url, req, buf);
} else {
- qCInfo(lcLsColJob) << "[DEBUG_ETAG] Sending PROPFIND request to url: " << makeDavUrl(path()).toString() << " with body: " << buf;
+ qCInfo(lcLsColJob) << "[DEBUG_ETAG] Sending PROPFIND request to url: " << makeDavUrl(path()).toString() << " with body: " << xml;
sendRequest("PROPFIND", makeDavUrl(path()), req, buf);
}
AbstractNetworkJob::start();