[gdm] display: add more debug spew
- From: Ray Strode <halfline src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gdm] display: add more debug spew
- Date: Fri, 6 Mar 2015 13:44:57 +0000 (UTC)
commit b557d03246aec5565ab1279793223a8542df690a
Author: Ray Strode <rstrode redhat com>
Date: Fri Mar 6 08:44:29 2015 -0500
display: add more debug spew
daemon/gdm-display.c | 8 ++++++++
1 files changed, 8 insertions(+), 0 deletions(-)
---
diff --git a/daemon/gdm-display.c b/daemon/gdm-display.c
index f890bc0..a0b3899 100644
--- a/daemon/gdm-display.c
+++ b/daemon/gdm-display.c
@@ -821,6 +821,7 @@ static void
_gdm_display_set_id (GdmDisplay *self,
const char *id)
{
+ g_debug ("GdmDisplay: id: %s", id);
g_free (self->priv->id);
self->priv->id = g_strdup (id);
}
@@ -829,6 +830,7 @@ static void
_gdm_display_set_seat_id (GdmDisplay *self,
const char *seat_id)
{
+ g_debug ("GdmDisplay: seat id: %s", seat_id);
g_free (self->priv->seat_id);
self->priv->seat_id = g_strdup (seat_id);
}
@@ -837,6 +839,7 @@ static void
_gdm_display_set_session_id (GdmDisplay *self,
const char *session_id)
{
+ g_debug ("GdmDisplay: session id: %s", session_id);
g_free (self->priv->session_id);
self->priv->session_id = g_strdup (session_id);
}
@@ -845,6 +848,7 @@ static void
_gdm_display_set_session_class (GdmDisplay *self,
const char *session_class)
{
+ g_debug ("GdmDisplay: session class: %s", session_class);
g_free (self->priv->session_class);
self->priv->session_class = g_strdup (session_class);
}
@@ -853,6 +857,7 @@ static void
_gdm_display_set_session_type (GdmDisplay *self,
const char *session_type)
{
+ g_debug ("GdmDisplay: session type: %s", session_type);
g_free (self->priv->session_type);
self->priv->session_type = g_strdup (session_type);
}
@@ -892,6 +897,7 @@ static void
_gdm_display_set_is_local (GdmDisplay *self,
gboolean is_local)
{
+ g_debug ("GdmDisplay: local: %s", is_local? "yes" : "no");
self->priv->is_local = is_local;
}
@@ -908,6 +914,7 @@ static void
_gdm_display_set_is_initial (GdmDisplay *self,
gboolean initial)
{
+ g_debug ("GdmDisplay: initial: %s", initial? "yes" : "no");
self->priv->is_initial = initial;
}
@@ -915,6 +922,7 @@ static void
_gdm_display_set_allow_timed_login (GdmDisplay *self,
gboolean allow_timed_login)
{
+ g_debug ("GdmDisplay: allow timed login: %s", allow_timed_login? "yes" : "no");
self->priv->allow_timed_login = allow_timed_login;
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]