Bug 1165515 - Part 5: Convert instances of PR_LOG_ALWAYS. r=froydnj

Most instances were converted to PR_LOG_INFO, some to PR_LOG_DEBUG, and some
to PR_LOG_ERROR.
This commit is contained in:
Eric Rahm
2015-06-03 15:22:30 -07:00
parent 70b17ad2c2
commit 31c4ae0966
49 changed files with 627 additions and 629 deletions

View File

@@ -331,12 +331,12 @@ NS_DebugBreak(uint32_t aSeverity, const char* aStr, const char* aExpr,
case NS_DEBUG_BREAK:
sevString = "###!!! BREAK";
ll = PR_LOG_ALWAYS;
ll = PR_LOG_ERROR;
break;
case NS_DEBUG_ABORT:
sevString = "###!!! ABORT";
ll = PR_LOG_ALWAYS;
ll = PR_LOG_ERROR;
break;
default: