server/red_worker: *_release_item: less frequent debug messages

This commit is contained in:
Alon Levy 2011-07-07 17:39:02 +02:00
parent 0378df6254
commit 5120dfb284

View File

@ -9149,7 +9149,7 @@ static void display_channel_release_item(RedChannel *channel, PipeItem *item, in
if (item_pushed) {
display_channel_release_item_after_push((DisplayChannel *)channel, item);
} else {
red_printf("not pushed");
red_printf_once("not pushed (%d)", item->type);
display_channel_release_item_before_push((DisplayChannel *)channel, item);
}
}
@ -9311,7 +9311,7 @@ static void cursor_channel_release_item(RedChannel *channel, PipeItem *item, int
if (item_pushed) {
cursor_channel_release_item_after_push((CursorChannel *)channel, item);
} else {
red_printf("not pushed");
red_printf_once("not pushed (%d)", item->type);
cursor_channel_release_item_before_push((CursorChannel *)channel, item);
}
}