Skip to content

Commit

Permalink
Improve log levels
Browse files Browse the repository at this point in the history
  • Loading branch information
nbolton committed Sep 30, 2024
1 parent 842c320 commit 3be68e9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/lib/synergy/gui/license/LicenseHandler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -67,17 +67,17 @@ bool LicenseHandler::handleStart(QMainWindow *parent, AppConfig *appConfig) {
}

if (m_license.isExpired()) {
qInfo("license is expired, showing activation dialog");
qWarning("license is expired, showing activation dialog");
return showActivationDialog();
}

if (m_license.isValid()) {
qInfo("license is valid, continuing with start");
qDebug("license is valid, continuing with start");
updateApp();
return true;
}

qInfo("license not valid, showing activation dialog");
qDebug("license not valid, showing activation dialog");
return showActivationDialog();
}

Expand Down

0 comments on commit 3be68e9

Please sign in to comment.