diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2010-06-17 23:10:31 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2010-06-18 23:18:03 +0800 |
commit | fc409d61494d325be2714f8b5a7aff2281755248 (patch) | |
tree | 83af4d5d8d820ff475a27ecc3627267a0f0aa307 /libempathy-gtk | |
parent | 323e59fd738a061d741608f26e16d56fec1f4e09 (diff) | |
download | gsoc2013-empathy-fc409d61494d325be2714f8b5a7aff2281755248.tar gsoc2013-empathy-fc409d61494d325be2714f8b5a7aff2281755248.tar.gz gsoc2013-empathy-fc409d61494d325be2714f8b5a7aff2281755248.tar.bz2 gsoc2013-empathy-fc409d61494d325be2714f8b5a7aff2281755248.tar.lz gsoc2013-empathy-fc409d61494d325be2714f8b5a7aff2281755248.tar.xz gsoc2013-empathy-fc409d61494d325be2714f8b5a7aff2281755248.tar.zst gsoc2013-empathy-fc409d61494d325be2714f8b5a7aff2281755248.zip |
use ISO-8601 dates in DEBUG
Diffstat (limited to 'libempathy-gtk')
-rw-r--r-- | libempathy-gtk/empathy-log-window.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/libempathy-gtk/empathy-log-window.c b/libempathy-gtk/empathy-log-window.c index 35b1ef52c..c60ca64b3 100644 --- a/libempathy-gtk/empathy-log-window.c +++ b/libempathy-gtk/empathy-log-window.c @@ -1275,8 +1275,8 @@ log_manager_got_dates_cb (GObject *manager, continue; } - DEBUG ("Marking date:'%u/%u/%u'", g_date_get_day (d), - g_date_get_month (d), g_date_get_year (d)); + DEBUG ("Marking date: %04u-%02u-%02u", g_date_get_year (d), + g_date_get_month (d), g_date_get_day (d)); gtk_calendar_mark_day (GTK_CALENDAR (window->calendar_chats), g_date_get_day (d)); @@ -1531,7 +1531,7 @@ log_window_calendar_chats_day_selected_cb (GtkWidget *calendar, date = g_date_new_dmy (day, month, year); - DEBUG ("Currently selected date is:'%u/%u/%u'", day, month, year); + DEBUG ("Currently selected date is: %04u-%02u-%02u", year, month, day); log_window_chats_get_messages (window, date); @@ -1575,8 +1575,8 @@ log_window_updating_calendar_month_cb (GObject *manager, if (g_date_get_year (date) == year_selected && g_date_get_month (date) == month_selected) { - DEBUG ("Marking date:'%u/%u/%u'", g_date_get_day (date), - g_date_get_month (date), g_date_get_year (date)); + DEBUG ("Marking date: %04u-%02u-%02u", g_date_get_year (date), + g_date_get_month (date), g_date_get_day (date)); gtk_calendar_mark_day (GTK_CALENDAR (window->calendar_chats), g_date_get_day (date)); } } |