diff options
Diffstat (limited to 'src/plugins/logger/logger.c')
-rw-r--r-- | src/plugins/logger/logger.c | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/src/plugins/logger/logger.c b/src/plugins/logger/logger.c index edce19ca5..211b42d52 100644 --- a/src/plugins/logger/logger.c +++ b/src/plugins/logger/logger.c @@ -942,13 +942,20 @@ logger_backlog (struct t_gui_buffer *buffer, const char *filename, int lines) if (pos_message) { if (datetime != 0) - weechat_printf_date (buffer, datetime, "%s", pos_message + 1); + { + weechat_printf_date_tags (buffer, datetime, "no_highlight", + "%s", pos_message + 1); + } else - weechat_printf (buffer, "%s", ptr_lines->data); + { + weechat_printf_tags (buffer, "no_highlight", + "%s", ptr_lines->data); + } } else { - weechat_printf (buffer, "%s", ptr_lines->data); + weechat_printf_tags (buffer, "no_highlight", + "%s", ptr_lines->data); } num_lines++; ptr_lines = ptr_lines->next_line; |