~smspillaz/xig/xig.disconnect-signals

« back to all changes in this revision

Viewing changes to src/xig-codec-logger.c

  • Committer: Robert Ancell
  • Date: 2012-01-06 02:56:12 UTC
  • Revision ID: robert.ancell@canonical.com-20120106025612-070yumo8tresad0n
Log property nofications as decimal integers

Show diffs side-by-side

added added

removed removed

Lines of Context:
210
210
property_notify_cb (XigCodec *codec, XigPropertyNotify *message, XigCodecLogger *logger)
211
211
{
212
212
    gchar *text;
213
 
    text = g_strdup_printf ("PropertyNotify window=0x%08X property=0x%08X", message->window, message->atom);
 
213
    text = g_strdup_printf ("PropertyNotify window=0x%08X property=%d", message->window, message->atom);
214
214
    XIG_CODEC_LOGGER_GET_CLASS (logger)->log_reply (logger, text);
215
215
    g_free (text);
216
216
}