From d783fd7fb6f5fa532ae7ff29cab971bf891e8655 Mon Sep 17 00:00:00 2001 From: Gerhard Hoffmann Date: Thu, 28 Sep 2023 12:09:57 +0200 Subject: [PATCH] Minor: print info instead of critical message when git fetch is empty --- git/git_client.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/git/git_client.cpp b/git/git_client.cpp index 88dbe1a..49df30c 100644 --- a/git/git_client.cpp +++ b/git/git_client.cpp @@ -271,8 +271,8 @@ std::optional GitClient::gitFetch() { Utils::printCriticalErrorMsg(QString("WRONG FORMAT FOR RESULT OF 'GIT FETCH' ") + s); } } else { - emit m_worker->showErrorMessage("git fetch", "empty result for 'git fetch'"); - Utils::printCriticalErrorMsg("EMPTY RESULT FOR 'GIT FETCH'"); + // emit m_worker->showErrorMessage("git fetch", "empty result for 'git fetch'"); + Utils::printInfoMsg("EMPTY RESULT FOR 'GIT FETCH'"); } } } else {