diff options
author | Charles Kerr <charles.kerr@canonical.com> | 2013-10-01 13:50:10 -0500 |
---|---|---|
committer | Charles Kerr <charles.kerr@canonical.com> | 2013-10-01 13:50:10 -0500 |
commit | 5a739fd7ee27a99f98edc469ab839c6c52d861cb (patch) | |
tree | a4dd78914625dc9662189408a51ecc55da18f2fd | |
parent | 6c04d1a5a97304fc42e4343a9b38a98e03a81008 (diff) | |
download | ayatana-indicator-power-5a739fd7ee27a99f98edc469ab839c6c52d861cb.tar.gz ayatana-indicator-power-5a739fd7ee27a99f98edc469ab839c6c52d861cb.tar.bz2 ayatana-indicator-power-5a739fd7ee27a99f98edc469ab839c6c52d861cb.zip |
replace a g_print() call with g_debug()
-rw-r--r-- | src/ib-brightness-control.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ib-brightness-control.c b/src/ib-brightness-control.c index 2b9b79d..ddc82e5 100644 --- a/src/ib-brightness-control.c +++ b/src/ib-brightness-control.c @@ -52,7 +52,7 @@ ib_brightness_control_new (void) (g_strcmp0 (device_type, "platform") == 0) || (g_strcmp0 (device_type, "raw") == 0)) { path = g_strdup (g_udev_device_get_sysfs_path (device->data)); - g_print ("found: %s\n", path); + g_debug ("found: %s", path); break; } } |