temporary printfs to help me debug the elusive #15792 that only bijals is seeing
git-svn-id: svn://10.0.0.236/trunk@50212 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
@@ -1491,7 +1491,11 @@ NS_IMETHODIMP nsProfile::StartApprunner(const char* profileName)
|
||||
if (!locator) return NS_ERROR_FAILURE;
|
||||
|
||||
rv = locator->ForgetProfileDir();
|
||||
if (NS_FAILED(rv)) return rv;
|
||||
if (NS_FAILED(rv)) {
|
||||
//temporary printf
|
||||
printf("failed to forget the profile dir\n");
|
||||
return rv;
|
||||
}
|
||||
|
||||
/*
|
||||
* Need to load new profile prefs.
|
||||
@@ -1507,7 +1511,11 @@ NS_IMETHODIMP nsProfile::StartApprunner(const char* profileName)
|
||||
NS_WITH_SERVICE(nsIBookmarksService, bookmarks, kBookmarksCID, &rv);
|
||||
if (NS_FAILED(rv)) return rv;
|
||||
rv = bookmarks->ReadBookmarks();
|
||||
if (NS_FAILED(rv)) return rv;
|
||||
if (NS_FAILED(rv)) {
|
||||
//temporary printf
|
||||
printf("failed to read bookmarks\n");
|
||||
return rv;
|
||||
}
|
||||
|
||||
rv = CloseRegistry();
|
||||
if (NS_FAILED(rv)) return rv;
|
||||
|
||||
Reference in New Issue
Block a user