From 7d5997a23664547de29aa0d91ece248c12220b14 Mon Sep 17 00:00:00 2001 From: Jeremy Attali Date: Sat, 4 Jan 2020 18:02:04 -0500 Subject: [PATCH] chore(paint): remove debug logs --- src/paint.c | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/paint.c b/src/paint.c index 895c87c..c397ff3 100644 --- a/src/paint.c +++ b/src/paint.c @@ -198,8 +198,6 @@ void paint_update_temporary_text(struct swappy_state *state, if (unicode != 0) { int ll = g_unichar_to_utf8(unicode, buffer); buffer[ll] = '\0'; - g_debug("received unicode: %d - utf8: %s (%d)", unicode, buffer, ll); - g_debug("text before: %s - cursor: %ld", text->text, text->cursor); char *new_text = string_insert_chars_at(text->text, buffer, text->cursor); g_free(text->text); @@ -208,9 +206,6 @@ void paint_update_temporary_text(struct swappy_state *state, } break; } - - g_debug("text->cursor: %ld", text->cursor); - g_debug("text is now: %s", text->text); } void paint_update_temporary_text_clip(struct swappy_state *state, gdouble x,