Minor: add possible debug messages.
This commit is contained in:
parent
8aeb7ecfea
commit
5abc057bda
@ -1438,6 +1438,10 @@ QDebug operator<< (QDebug debug, UpdateStatus status) {
|
||||
debug << QString("UPDATE_STATUS::EXEC_OPKG_COMMANDS: ")
|
||||
<< status.m_statusDescription;
|
||||
break;
|
||||
case UPDATE_STATUS::REMOVE_GIT_REPOSITORY_FAILED:
|
||||
debug << QString("UPDATE_STATUS::REMOVE_GIT_REPOSITORY_FAILED: ")
|
||||
<< status.m_statusDescription;
|
||||
break;
|
||||
// default:;
|
||||
}
|
||||
return debug;
|
||||
@ -1561,6 +1565,10 @@ QString& operator<< (QString& str, UpdateStatus status) {
|
||||
str = QString("UPDATE_STATUS::RSYNC_FILE_SUCCESS: ");
|
||||
str += status.m_statusDescription;
|
||||
break;
|
||||
case UPDATE_STATUS::REMOVE_GIT_REPOSITORY_FAILED:
|
||||
str = QString("UPDATE_STATUS::REMOVE_GIT_REPOSITORY_FAILED: ");
|
||||
str += status.m_statusDescription;
|
||||
break;
|
||||
//default:;
|
||||
}
|
||||
return str;
|
||||
|
Loading…
Reference in New Issue
Block a user