summaryrefslogtreecommitdiff
path: root/pango/pango-layout.c
diff options
context:
space:
mode:
authorBehdad Esfahbod <behdad@behdad.org>2009-04-06 19:41:32 -0400
committerBehdad Esfahbod <behdad@behdad.org>2009-04-06 19:41:32 -0400
commit3948365307f6b70863d89af7da832b84af72c263 (patch)
tree1a0a0eb1606d67138bc55bd9ce422f3dbe15561e /pango/pango-layout.c
parentfed14242693db7f79c51190698aaf015d0e0a44f (diff)
downloadpango-3948365307f6b70863d89af7da832b84af72c263.tar.gz
Use g_debug() instead of g_message()
Diffstat (limited to 'pango/pango-layout.c')
-rw-r--r--pango/pango-layout.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/pango/pango-layout.c b/pango/pango-layout.c
index b2dae0a4..e6f0b4d0 100644
--- a/pango/pango-layout.c
+++ b/pango/pango-layout.c
@@ -3186,11 +3186,11 @@ debug (const char *where, PangoLayoutLine *line, ParaBreakState *state)
{
int line_width = pango_layout_line_get_width (line);
- g_message ("rem %d + line %d = %d %s",
- state->remaining_width,
- line_width,
- state->remaining_width + line_width,
- where);
+ g_debug ("rem %d + line %d = %d %s",
+ state->remaining_width,
+ line_width,
+ state->remaining_width + line_width,
+ where);
}
#else
# define DEBUG(where, line, state) do { } while (0)