Minor: print info instead of critical message when git fetch is empty

This commit is contained in:
Gerhard Hoffmann 2023-09-28 12:09:57 +02:00
parent e0a0ff54e1
commit d783fd7fb6

View File

@ -271,8 +271,8 @@ std::optional<QString> GitClient::gitFetch() {
Utils::printCriticalErrorMsg(QString("WRONG FORMAT FOR RESULT OF 'GIT FETCH' ") + s); Utils::printCriticalErrorMsg(QString("WRONG FORMAT FOR RESULT OF 'GIT FETCH' ") + s);
} }
} else { } else {
emit m_worker->showErrorMessage("git fetch", "empty result for 'git fetch'"); // emit m_worker->showErrorMessage("git fetch", "empty result for 'git fetch'");
Utils::printCriticalErrorMsg("EMPTY RESULT FOR 'GIT FETCH'"); Utils::printInfoMsg("EMPTY RESULT FOR 'GIT FETCH'");
} }
} }
} else { } else {