Bug 47207. Changing printf to PRINTF to use new logging facility. r=valeski,sr=waterson

git-svn-id: svn://10.0.0.236/trunk@81885 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
warren%netscape.com
2000-10-27 22:43:51 +00:00
parent e7c9040b5e
commit c6b67eceeb
757 changed files with 10724 additions and 8223 deletions

View File

@@ -73,6 +73,12 @@
#include "nsContentPolicyUtils.h"
#define PRODUCT_NAME "Gecko"
#include "nslog.h"
NS_IMPL_LOG(nsLayoutModuleLog)
#define PRINTF NS_LOG_PRINTF(nsLayoutModuleLog)
#define FLUSH NS_LOG_FLUSH(nsLayoutModuleLog)
static NS_DEFINE_CID(kHTTPHandlerCID, NS_IHTTPHANDLER_CID);
static nsLayoutModule *gModule = NULL;
@@ -398,9 +404,7 @@ nsLayoutModule::RegisterSelf(nsIComponentManager *aCompMgr,
{
nsresult rv = NS_OK;
#ifdef DEBUG
printf("*** Registering layout components\n");
#endif
PRINTF("*** Registering layout components\n");
Components* cp = gComponents;
Components* end = cp + NUM_COMPONENTS;
@@ -408,10 +412,8 @@ nsLayoutModule::RegisterSelf(nsIComponentManager *aCompMgr,
rv = aCompMgr->RegisterComponentSpec(cp->mCID, cp->mDescription,
cp->mContractID, aPath, PR_TRUE, PR_TRUE);
if (NS_FAILED(rv)) {
#ifdef DEBUG
printf("nsLayoutModule: unable to register %s component => %x\n",
PRINTF("nsLayoutModule: unable to register %s component => %x\n",
cp->mDescription, rv);
#endif
break;
}
cp++;
@@ -427,18 +429,14 @@ nsLayoutModule::UnregisterSelf(nsIComponentManager* aCompMgr,
nsIFile* aPath,
const char* registryLocation)
{
#ifdef DEBUG
printf("*** Unregistering layout components\n");
#endif
PRINTF("*** Unregistering layout components\n");
Components* cp = gComponents;
Components* end = cp + NUM_COMPONENTS;
while (cp < end) {
nsresult rv = aCompMgr->UnregisterComponentSpec(cp->mCID, aPath);
if (NS_FAILED(rv)) {
#ifdef DEBUG
printf("nsLayoutModule: unable to unregister %s component => %x\n",
PRINTF("nsLayoutModule: unable to unregister %s component => %x\n",
cp->mDescription, rv);
#endif
}
cp++;
}