Add log flag for verbose AppFuse log for nyc-dev.
Change-Id: I60ca596e32f8668ae5895e671d92c4978ede6314
Fixed: 28055420
diff --git a/CommandListener.cpp b/CommandListener.cpp
index 863724b..8780e98 100644
--- a/CommandListener.cpp
+++ b/CommandListener.cpp
@@ -52,6 +52,7 @@
#include "TrimTask.h"
#define DUMP_ARGS 0
+#define DEBUG_APPFUSE 0
CommandListener::CommandListener() :
FrameworkListener("vold", true) {
@@ -674,8 +675,10 @@
pid_t pid,
const std::string& path,
int device_fd) {
- LOG(DEBUG) << "Run app fuse command " << command << " for the path " << path << " in namespace "
- << uid;
+ if (DEBUG_APPFUSE) {
+ LOG(DEBUG) << "Run app fuse command " << command << " for the path " << path
+ << " in namespace " << uid;
+ }
const android::vold::ScopedDir dir(opendir("/proc"));
if (dir.get() == nullptr) {