diff options
| author | LostDragonist <lost.dragonist@gmail.com> | 2019-01-30 20:32:48 -0600 |
|---|---|---|
| committer | LostDragonist <lost.dragonist@gmail.com> | 2019-01-30 20:32:48 -0600 |
| commit | 4b522f40e88e1350434aaa7d77fc60cb7ca36930 (patch) | |
| tree | ab162fb185d043fbb29a9984ba24b1daf906f765 /src/modlistsortproxy.cpp | |
| parent | 6d453505468ccf86966c358d57aa820b18def4ec (diff) | |
Make logs more consistent in format and content
Diffstat (limited to 'src/modlistsortproxy.cpp')
| -rw-r--r-- | src/modlistsortproxy.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modlistsortproxy.cpp b/src/modlistsortproxy.cpp index 99f0efef..2d9ea4a5 100644 --- a/src/modlistsortproxy.cpp +++ b/src/modlistsortproxy.cpp @@ -474,13 +474,13 @@ bool ModListSortProxy::filterAcceptsRow(int row, const QModelIndex &parent) cons }
if (row >= static_cast<int>(m_Profile->numMods())) {
- qWarning("invalid row idx %d", row);
+ qWarning("invalid row index: %d", row);
return false;
}
QModelIndex idx = sourceModel()->index(row, 0, parent);
if (!idx.isValid()) {
- qDebug("invalid index");
+ qDebug("invalid mod index");
return false;
}
if (sourceModel()->hasChildren(idx)) {
|
