summaryrefslogtreecommitdiff
path: root/src/organizercore.cpp
diff options
context:
space:
mode:
authorisanae <14251494+isanae@users.noreply.github.com>2020-04-17 09:06:41 -0400
committerisanae <14251494+isanae@users.noreply.github.com>2020-04-17 09:06:41 -0400
commit3b0fbebc6ad8979d9d4551fcd9db1b8f2ca4bf48 (patch)
treefd3aab69e774168b85b4ffaefdab6a0fdd163b2b /src/organizercore.cpp
parentd7ceadeae173e26d63db0b58b6ea5a3ed839999c (diff)
dump a bunch of counts for mods when selecting a profile
Diffstat (limited to 'src/organizercore.cpp')
-rw-r--r--src/organizercore.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/organizercore.cpp b/src/organizercore.cpp
index 0b3a4bfe..dacf0175 100644
--- a/src/organizercore.cpp
+++ b/src/organizercore.cpp
@@ -508,6 +508,8 @@ void OrganizerCore::setCurrentProfile(const QString &profileName)
return;
}
+ log::debug("selecting profile '{}'", profileName);
+
QDir profileBaseDir(settings().paths().profiles());
QString profileDir = profileBaseDir.absoluteFilePath(profileName);
@@ -537,6 +539,8 @@ void OrganizerCore::setCurrentProfile(const QString &profileName)
connect(m_CurrentProfile, SIGNAL(modStatusChanged(uint)), this, SLOT(modStatusChanged(uint)));
connect(m_CurrentProfile, SIGNAL(modStatusChanged(QList<uint>)), this, SLOT(modStatusChanged(QList<uint>)));
refreshDirectoryStructure();
+
+ m_CurrentProfile->debugDump();
}
MOBase::IModRepositoryBridge *OrganizerCore::createNexusBridge() const