diff --git a/stepmania/src/ProfileManager.cpp b/stepmania/src/ProfileManager.cpp index e41daabea0..260a28cd98 100644 --- a/stepmania/src/ProfileManager.cpp +++ b/stepmania/src/ProfileManager.cpp @@ -79,6 +79,8 @@ void ProfileManager::GetLocalProfileNames( vector &asNamesOut ) const bool ProfileManager::LoadProfile( PlayerNumber pn, CString sProfileDir, bool bIsMemCard, bool bLoadNamesOnly ) { + LOG->Trace( "LoadingProfile P%d, %s, %d, %d", pn+1, sProfileDir.c_str(), bIsMemCard, bLoadNamesOnly ); + ASSERT( !sProfileDir.empty() ); ASSERT( sProfileDir.Right(1) == "/" ); @@ -90,6 +92,8 @@ bool ProfileManager::LoadProfile( PlayerNumber pn, CString sProfileDir, bool bIs else m_Profile[pn].LoadAllFromDir( m_sProfileDir[pn], PREFSMAN->m_bSignProfileData ); + LOG->Trace( "Done loading profile." ); + return true; }