Skip to content

Commit

Permalink
Minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
tnodir committed Aug 26, 2019
1 parent dd7a9d5 commit 40dd6c2
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/ui/db/databasemanager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -345,8 +345,9 @@ void DatabaseManager::logStatTraf(quint16 procCount, const quint32 *procTrafByte

const int procIndex = m_appIndexes.value(pid, INVALID_APP_INDEX);
if (Q_UNLIKELY(procIndex == INVALID_APP_INDEX)) {
qCritical(CLOG_DATABASE_MANAGER()) << "UI & Driver's states mismatch! Expected process count:"
<< procCount << "Got:" << m_appIndexes.size();
qCritical(CLOG_DATABASE_MANAGER()) << "UI & Driver's states mismatch! Expected processes:"
<< m_appIndexes.keys() << "Got:" << procCount
<< "(" << i << pid << inactive << ")";
abort();
}

Expand Down

0 comments on commit 40dd6c2

Please sign in to comment.