remove unneeded logging

This commit is contained in:
AJ Kelly
2011-07-30 13:10:34 -05:00
parent 20bd01c275
commit 48e8f6ab49
2 changed files with 1 additions and 3 deletions
+1 -2
View File
@@ -482,7 +482,6 @@ bool ProfileManager::RenameLocalProfile( RString sProfileID, RString sNewName )
bool ProfileManager::DeleteLocalProfile( RString sProfileID )
{
LOG->Trace( ssprintf("[ProfileManager::DeleteLocalProfile] delete %s",sProfileID.c_str()) );
Profile *pProfile = ProfileManager::GetLocalProfile( sProfileID );
ASSERT( pProfile );
RString sProfileDir = LocalProfileIDToDir( sProfileID );
@@ -508,7 +507,7 @@ bool ProfileManager::DeleteLocalProfile( RString sProfileID )
}
else
{
LOG->Trace( ssprintf("[ProfileManager::DeleteLocalProfile] DeleteRecursive(%s) failed",sProfileID.c_str()) );
LOG->Warn( ssprintf("[ProfileManager::DeleteLocalProfile] DeleteRecursive(%s) failed",sProfileID.c_str()) );
return false;
}
}