Commit 3c56f382 authored by topjohnwu's avatar topjohnwu

Change most logs to debug logs

parent f4f2274c
...@@ -187,7 +187,7 @@ static bool process_pid(int pid) { ...@@ -187,7 +187,7 @@ static bool process_pid(int pid) {
static int xinotify_add_watch(int fd, const char* path, uint32_t mask) { static int xinotify_add_watch(int fd, const char* path, uint32_t mask) {
int ret = inotify_add_watch(fd, path, mask); int ret = inotify_add_watch(fd, path, mask);
if (ret >= 0) { if (ret >= 0) {
LOGI("proc_monitor: Monitoring %s\n", path); LOGD("proc_monitor: Monitoring %s\n", path);
} else { } else {
PLOGE("proc_monitor: Monitor %s", path); PLOGE("proc_monitor: Monitor %s", path);
} }
...@@ -253,7 +253,7 @@ void update_inotify_mask(bool refresh) { ...@@ -253,7 +253,7 @@ void update_inotify_mask(bool refresh) {
term_thread(TERM_THREAD); term_thread(TERM_THREAD);
} }
LOGI("proc_monitor: Updating inotify list\n"); LOGD("proc_monitor: Updating inotify list\n");
strcpy(buf, DATA_APP); strcpy(buf, DATA_APP);
app_in_data.clear(); app_in_data.clear();
bool reinstall = false; bool reinstall = false;
...@@ -324,7 +324,7 @@ void proc_monitor() { ...@@ -324,7 +324,7 @@ void proc_monitor() {
MutexGuard lock(list_lock); MutexGuard lock(list_lock);
crawl_procfs(process_pid); crawl_procfs(process_pid);
} else if (!(event->mask & IN_IGNORED)) { } else if (!(event->mask & IN_IGNORED)) {
LOGI("proc_monitor: inotify: /data/app change detected\n"); LOGD("proc_monitor: inotify: /data/app change detected\n");
update_inotify_mask(true); update_inotify_mask(true);
break; break;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment