summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWilliam Jon McCann <mccann@jhu.edu>2007-12-20 00:42:29 +0000
committerWilliam Jon McCann <mccann@src.gnome.org>2007-12-20 00:42:29 +0000
commitfb12ed6bdcc0ff1607c7221b999fb8abea055578 (patch)
tree87badb296895ca1c9342e329a67778964bf27fc9
parentfffeeaa46b7c9e65278b8285abe8e6cf3a27933a (diff)
downloadgdm-fb12ed6bdcc0ff1607c7221b999fb8abea055578.tar.gz
Make 2 warnings debugs instead
2007-12-19 William Jon McCann <mccann@jhu.edu> * gui/simple-greeter/gdm-user-manager.c: (get_seat_id_for_session), (get_current_seat_id): Make 2 warnings debugs instead svn path=/trunk/; revision=5575
-rw-r--r--ChangeLog6
-rw-r--r--gui/simple-greeter/gdm-user-manager.c4
2 files changed, 8 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 57076b09..b7f38aea 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,12 @@
2007-12-19 William Jon McCann <mccann@jhu.edu>
* gui/simple-greeter/gdm-user-manager.c: (get_seat_id_for_session),
+ (get_current_seat_id):
+ Make 2 warnings debugs instead
+
+2007-12-19 William Jon McCann <mccann@jhu.edu>
+
+ * gui/simple-greeter/gdm-user-manager.c: (get_seat_id_for_session),
(add_sessions_for_user), (get_current_seat_id), (get_seat_proxy),
(gdm_user_manager_finalize):
Ignore sessions on other seats.
diff --git a/gui/simple-greeter/gdm-user-manager.c b/gui/simple-greeter/gdm-user-manager.c
index 8f667017..0a5ce526 100644
--- a/gui/simple-greeter/gdm-user-manager.c
+++ b/gui/simple-greeter/gdm-user-manager.c
@@ -189,7 +189,7 @@ get_seat_id_for_session (DBusGConnection *connection,
DBUS_TYPE_G_OBJECT_PATH, &seat_id,
G_TYPE_INVALID);
if (! res) {
- g_warning ("Failed to identify the current seat: %s", error->message);
+ g_debug ("Failed to identify the current seat: %s", error->message);
g_error_free (error);
}
out:
@@ -360,7 +360,7 @@ get_current_seat_id (DBusGConnection *connection)
&session_id,
G_TYPE_INVALID);
if (! res) {
- g_warning ("Failed to identify the current session: %s", error->message);
+ g_debug ("Failed to identify the current session: %s", error->message);
g_error_free (error);
goto out;
}