use g_debug for debug messages

This commit is contained in:
Dana Jansens 2008-03-02 15:17:31 -05:00
parent 722a712b8c
commit ac255432b4
2 changed files with 15 additions and 15 deletions

View file

@ -131,11 +131,11 @@ static gint xerror_handler(Display *d, XErrorEvent *e)
XGetErrorText(d, e->error_code, errtxt, 127); XGetErrorText(d, e->error_code, errtxt, 127);
if (!xerror_ignore) { if (!xerror_ignore) {
if (e->error_code == BadWindow) if (e->error_code == BadWindow)
/*g_message(_("X Error: %s\n"), errtxt)*/; /*g_debug(_("X Error: %s\n"), errtxt)*/;
else else
g_error("X Error: %s", errtxt); g_error("X Error: %s", errtxt);
} else } else
g_message("Ignoring XError code %d '%s'", e->error_code, errtxt); g_debug("Ignoring XError code %d '%s'", e->error_code, errtxt);
#else #else
(void)d; (void)e; (void)d; (void)e;
#endif #endif

View file

@ -74,7 +74,7 @@ static void AddPicture(RrImage *self, RrImagePic ***list, gint *len,
g_hash_table_insert(self->cache->table, (*list)[0], self); g_hash_table_insert(self->cache->table, (*list)[0], self);
#ifdef DEBUG #ifdef DEBUG
g_message("Adding %s picture to the cache:\n " g_debug("Adding %s picture to the cache:\n "
"Image 0x%x, w %d h %d Hash %u", "Image 0x%x, w %d h %d Hash %u",
(*list == self->original ? "ORIGINAL" : "RESIZED"), (*list == self->original ? "ORIGINAL" : "RESIZED"),
(guint)self, pic->width, pic->height, RrImagePicHash(pic)); (guint)self, pic->width, pic->height, RrImagePicHash(pic));
@ -89,7 +89,7 @@ static void RemovePicture(RrImage *self, RrImagePic ***list,
gint j; gint j;
#ifdef DEBUG #ifdef DEBUG
g_message("Removing %s picture from the cache:\n " g_debug("Removing %s picture from the cache:\n "
"Image 0x%x, w %d h %d Hash %u", "Image 0x%x, w %d h %d Hash %u",
(*list == self->original ? "ORIGINAL" : "RESIZED"), (*list == self->original ? "ORIGINAL" : "RESIZED"),
(guint)self, (*list)[i]->width, (*list)[i]->height, (guint)self, (*list)[i]->width, (*list)[i]->height,
@ -323,7 +323,7 @@ void RrImageUnref(RrImage *self)
{ {
if (self && --self->ref == 0) { if (self && --self->ref == 0) {
#ifdef DEBUG #ifdef DEBUG
g_message("Refcount to 0, removing ALL pictures from the cache:\n " g_debug("Refcount to 0, removing ALL pictures from the cache:\n "
"Image 0x%x", (guint)self); "Image 0x%x", (guint)self);
#endif #endif
while (self->n_original > 0) while (self->n_original > 0)
@ -346,7 +346,7 @@ void RrImageAddPicture(RrImage *self, RrPixel32 *data, gint w, gint h)
for (i = 0; i < self->n_original; ++i) for (i = 0; i < self->n_original; ++i)
if (self->original[i]->width == w && self->original[i]->height == h) { if (self->original[i]->width == w && self->original[i]->height == h) {
#ifdef DEBUG #ifdef DEBUG
g_message("Found duplicate ORIGINAL image:\n " g_debug("Found duplicate ORIGINAL image:\n "
"Image 0x%x, w %d h %d", (guint)self, w, h); "Image 0x%x, w %d h %d", (guint)self, w, h);
#endif #endif
return; return;