This commit is contained in:
smanojna
2006-03-09 04:45:36 +00:00
parent 92782922b9
commit 4b927ead3e
5 changed files with 24 additions and 14 deletions

View File

@@ -260,7 +260,7 @@ public class HostElement
methodStatusCode = FPM_GetSignonData(profileName,out hostListIntPtr,LOAD_PROFILE_ALWAYSFROM_FILE);
if( 1 != methodStatusCode )
{
Console.WriteLine("FireFox:Getting Data for profile Failed with error "+methodStatusCode);
//Console.WriteLine("FireFox:Getting Data for profile Failed with error "+methodStatusCode);
hostList=null;
return hostList;
}

View File

@@ -17,8 +17,10 @@ void PrintMessage( int level, char *mesg , ...)
#ifdef DEBUG
printf("%s", lastErrorMesg );
#else
if( level != MESG_DEBUG )
printf("%s", lastErrorMesg );
if( level != MESG_DEBUG )
{
//printf("%s", lastErrorMesg );
}
#endif
}