summaryrefslogtreecommitdiff
path: root/src/cd-main.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/cd-main.c')
-rw-r--r--src/cd-main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cd-main.c b/src/cd-main.c
index 4a068d1..685736d 100644
--- a/src/cd-main.c
+++ b/src/cd-main.c
@@ -796,12 +796,12 @@ cd_main_get_cmdline_for_pid (guint pid)
proc_path = g_strdup_printf ("/proc/%u/cmdline", pid);
ret = g_file_get_contents (proc_path, &cmdline, &len, &error);
if (!ret) {
- g_warning ("CdMain: failed to read %s: %s",
+ g_debug ("CdMain: failed to read %s: %s",
proc_path, error->message);
return NULL;
}
if (len == 0) {
- g_warning ("CdMain: failed to read %s", proc_path);
+ g_debug ("CdMain: failed to read %s", proc_path);
g_free (cmdline);
return NULL;
}