Remove unneeded logging in DomainServer.cpp

This commit is contained in:
Ryan Huffman 2017-10-28 12:08:49 -07:00 committed by Atlante45
parent 56e9a9aaf9
commit 88e22f7507

View file

@ -414,7 +414,6 @@ bool DomainServer::optionallySetupOAuth() {
const QVariantMap& settingsMap = _settingsManager.getSettingsMap();
_oauthProviderURL = QUrl(settingsMap.value(OAUTH_PROVIDER_URL_OPTION).toString());
qDebug() << "OAUTH: " << _oauthProviderURL;
// if we don't have an oauth provider URL then we default to the default node auth url
if (_oauthProviderURL.isEmpty()) {
@ -2302,8 +2301,6 @@ HTTPSConnection* DomainServer::connectionFromReplyWithState(QNetworkReply* reply
void DomainServer::tokenGrantFinished() {
auto tokenReply = qobject_cast<QNetworkReply*>(sender());
qDebug() << "Token grant finsihed";
if (tokenReply) {
if (tokenReply->error() == QNetworkReply::NoError) {
// now that we have a token for this profile, send off a profile request
@ -2335,7 +2332,6 @@ void DomainServer::profileRequestFinished() {
if (connection) {
if (profileReply->error() == QNetworkReply::NoError) {
qDebug() << "Reply: " << profileReply->readAll();
// call helper method to get cookieHeaders
Headers cookieHeaders = setupCookieHeadersFromProfileReply(profileReply);