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

github.com/owncloud/client.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorDaniel Molkentin <danimo@owncloud.com>2013-11-23 03:29:09 +0400
committerDaniel Molkentin <danimo@owncloud.com>2013-11-25 18:34:16 +0400
commit2a17a2a10224c8b400e49f16ee75ea8dae4e3223 (patch)
tree43f2c0143efb44fec9003f18ce7cbfbd8a7fd3a0 /src
parent4e22fff42709bfdf3b1dfd2b749acb79d3f757af (diff)
Remove credential-exposing debug output
Diffstat (limited to 'src')
-rw-r--r--src/creds/httpcredentials.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/creds/httpcredentials.cpp b/src/creds/httpcredentials.cpp
index 8fc9cf11b..149b06ce5 100644
--- a/src/creds/httpcredentials.cpp
+++ b/src/creds/httpcredentials.cpp
@@ -84,7 +84,7 @@ protected:
QByteArray credHash = QByteArray(_cred->user().toUtf8()+":"+_cred->password().toUtf8()).toBase64();
QNetworkRequest req(request);
req.setRawHeader(QByteArray("Authorization"), QByteArray("Basic ") + credHash);
- qDebug() << "Request for " << req.url() << "with authorization" << QByteArray::fromBase64(credHash);
+ //qDebug() << "Request for " << req.url() << "with authorization" << QByteArray::fromBase64(credHash);
return MirallAccessManager::createRequest(op, req, outgoingData);
}
private: