Skip to content

Commit

Permalink
Clean-up debug log calls
Browse files Browse the repository at this point in the history
  • Loading branch information
svendcs committed Aug 30, 2020
1 parent 4dfdf92 commit dff2ee6
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 5 deletions.
1 change: 0 additions & 1 deletion src/ui/store_managers/master_store_manager.cpp
Expand Up @@ -285,7 +285,6 @@ bool MasterStoreManager::moveBackup(const std::string &base, unsigned int n, con
}

MasterStoreManager::~MasterStoreManager() {
log_debug().msg("MasterStoreManager::Destructor called");
stop();
wait();
}
3 changes: 0 additions & 3 deletions src/ui/web/web_client.cpp
Expand Up @@ -188,7 +188,6 @@ void WebClient::disconnect() {
}

void WebClient::registerWebName(TournamentId id, const QString &webName) {
log_debug().field("id", id).field("webName", webName.toStdString()).msg("Registering web name");
mContext.post([this, id, webName]() {
assert(mState == WebClientState::CONNECTED);
mState = WebClientState::CONFIGURING;
Expand Down Expand Up @@ -228,8 +227,6 @@ void WebClient::registerWebName(TournamentId id, const QString &webName) {
return;
}

log_debug().field("type", responseMessage->getType()).msg("Got response");

if (responseMessage->getType() != NetworkMessage::Type::REGISTER_WEB_NAME_RESPONSE) {
log_error().msg("Received response message of wrong type. Failing");
killConnection();
Expand Down
1 change: 0 additions & 1 deletion src/ui/widgets/web_client_widget.cpp
Expand Up @@ -97,7 +97,6 @@ void WebClientWidget::buttonClick() {
log_debug().msg("Check webName");
}
else {
log_debug().msg("Show configure dialog");
ConfigureDialog dialog(mStoreManager);
if (dialog.exec() != QDialog::Accepted)
return;
Expand Down

0 comments on commit dff2ee6

Please sign in to comment.