aboutsummaryrefslogtreecommitdiff
path: root/src/logwindow.c
diff options
context:
space:
mode:
authorhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2009-10-02 02:23:58 +0000
committerhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2009-10-02 02:23:58 +0000
commit7a7ab0907191055a1e94ffb441992187fd13cb34 (patch)
tree84e5a858e23eaa9e94420ff07182b0a3a991da38 /src/logwindow.c
parent9654e4020b2d26c716102d143e94a40123c40e28 (diff)
logwindow.c: modified debug print.
git-svn-id: svn://sylpheed.sraoss.jp/sylpheed/trunk@2266 ee746299-78ed-0310-b773-934348b2243d
Diffstat (limited to 'src/logwindow.c')
-rw-r--r--src/logwindow.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/logwindow.c b/src/logwindow.c
index acf4f669..47cc8a8b 100644
--- a/src/logwindow.c
+++ b/src/logwindow.c
@@ -286,7 +286,7 @@ void log_window_append_queue(const gchar *str, LogType type)
logdata->str = g_strdup(str);
logdata->type = type;
- g_print("append_queue: (%d) %s\n", type, str);
+ g_print("append_queue: (%d) %s", type, str);
g_async_queue_push(logwindow->aqueue, logdata);
#endif
}
@@ -302,7 +302,7 @@ void log_window_flush(void)
}
while ((logdata = g_async_queue_try_pop(logwindow->aqueue))) {
- g_print("flush_queue: (%d) %s\n", logdata->type, logdata->str);
+ g_print("flush_queue: (%d) %s", logdata->type, logdata->str);
log_window_append_real(logdata->str, logdata->type);
g_free(logdata->str);
g_free(logdata);