Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2339)

Unified Diff: content/common/sandbox_linux/sandbox_linux.cc

Issue 727443002: [content/common] Convert VLOGs to DVLOGs (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: content/common/sandbox_linux/sandbox_linux.cc
diff --git a/content/common/sandbox_linux/sandbox_linux.cc b/content/common/sandbox_linux/sandbox_linux.cc
index 12e11d8e1312d1480cbf7e7bb8bc27e9760ef156..433dc08b6742ed4f6f91da63e89f9baaf27558ee 100644
--- a/content/common/sandbox_linux/sandbox_linux.cc
+++ b/content/common/sandbox_linux/sandbox_linux.cc
@@ -59,7 +59,7 @@ void LogSandboxStarted(const std::string& sandbox_name) {
const std::string activated_sandbox =
"Activated " + sandbox_name + " sandbox for process type: " +
process_type + ".";
- VLOG(1) << activated_sandbox;
+ DVLOG(1) << activated_sandbox;
}
bool AddResourceLimit(int resource, rlim_t limit) {
@@ -153,7 +153,7 @@ void LinuxSandbox::PreinitializeSandbox() {
// We "pre-warm" the code that detects supports for seccomp BPF.
if (SandboxSeccompBPF::IsSeccompBPFDesired()) {
if (!SandboxSeccompBPF::SupportsSandbox()) {
- VLOG(1) << "Lacking support for seccomp-bpf sandbox.";
+ DVLOG(1) << "Lacking support for seccomp-bpf sandbox.";
} else {
seccomp_bpf_supported_ = true;
}

Powered by Google App Engine
This is Rietveld 408576698