Applying a patch by Colomban Wendling to print out log domains. Thanks.

git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@5129 ea778897-0a13-0410-b9d1-a72fbfd435f5
This commit is contained in:
Frank Lanitz 2010-08-10 20:48:10 +00:00
parent e5dc5876f9
commit e16c55ff8f
2 changed files with 6 additions and 2 deletions

View File

@ -2,7 +2,10 @@
* autogen.sh:
Applying a patch by Erik de Castro Lopo for checking against
pkg-config when running autogen.sh. Thanks for the patch.
pkg-config when running autogen.sh. Thanks for the patch.
* src/log.c:
Applying a patch by Colomban Wendling to print out log domains.
Thanks.
2010-08-10 Nick Treleaven <nick(dot)treleaven(at)btinternet(dot)com>

View File

@ -136,7 +136,8 @@ static void handler_log(const gchar *domain, GLogLevelFlags level, const gchar *
time_str = utils_get_current_time_string();
g_string_append_printf(log_buffer, "%s: %s: %s\n", time_str, get_log_prefix(level), msg);
g_string_append_printf(log_buffer, "%s: %s %s: %s\n", time_str, domain,
get_log_prefix(level), msg);
g_free(time_str);