Bug 1308564 - Tie logging to MOZ_SANDBOX_VERBOSE instead of DEBUG. r=jld

MozReview-Commit-ID: JHIzIvbjA0Q

--HG--
extra : rebase_source : bb5652209a3fdb9e5cccb6c3cc4058fd74173fd1
This commit is contained in:
Gian-Carlo Pascutto 2016-10-07 21:33:12 +02:00
Родитель 07dd12c627
Коммит f0dece11a4
1 изменённых файлов: 5 добавлений и 5 удалений

Просмотреть файл

@ -720,11 +720,11 @@ SandboxBroker::AuditPermissive(int aOp, int aFlags, int aPerms, const char* aPat
void
SandboxBroker::AuditDenial(int aOp, int aFlags, int aPerms, const char* aPath)
{
#ifdef DEBUG
SANDBOX_LOG_ERROR("SandboxBroker: denied op=%d rflags=%o perms=%d path=%s for pid=%d" \
" error=\"%s\"", aOp, aFlags, aPerms, aPath, mChildPid,
strerror(errno));
#endif
if (SandboxInfo::Get().Test(SandboxInfo::kVerbose)) {
SANDBOX_LOG_ERROR("SandboxBroker: denied op=%d rflags=%o perms=%d path=%s for pid=%d" \
" error=\"%s\"", aOp, aFlags, aPerms, aPath, mChildPid,
strerror(errno));
}
}