Minor: add debug output
This commit is contained in:
parent
728185ddb9
commit
e04636e3f7
11
worker.cpp
11
worker.cpp
@ -279,11 +279,22 @@ void Worker::privateUpdate() {
|
||||
if (m_ismasTriggerActive == false) {
|
||||
if (QDir(m_customerRepository).exists()) { // ignore a possibly corrupted repository
|
||||
m_versionInfo = m_gc.gitShowReason(m_branchName);
|
||||
|
||||
qCritical() << "***";
|
||||
qCritical() << "privateUpdate ............. m_versionInfo:" << m_versionInfo;
|
||||
qCritical() << "privateUpdate ......... m_automaticUpdate:" << m_automaticUpdate;
|
||||
|
||||
if (m_automaticUpdate) { // update has been triggered within [00:00:00, 00:03:59]
|
||||
m_updateNotNecessary = true;
|
||||
m_ismasTriggerStatusMessage = QStringList(QString("NO UPDATE NECESSARY (%1)").arg(current.toString(Qt::ISODate)));
|
||||
|
||||
qCritical() << "privateUpdate m_ismasTriggerStatusMessage:" = QStringList(QString("NO UPDATE NECESSARY (%1)").arg(current.toString(Qt::ISODate)));
|
||||
|
||||
m_lastFailedUpdateStep = UPDATE_STEP::NONE;
|
||||
}
|
||||
|
||||
qCritical() << "***";
|
||||
|
||||
// the customer-repository does exist, but the ISMAS-trigger is
|
||||
// *NOT* "WAIT", so STOP the update procedure
|
||||
return;
|
||||
|
Loading…
Reference in New Issue
Block a user