diff options
author | hiro <hiro@ee746299-78ed-0310-b773-934348b2243d> | 2005-10-12 07:27:46 +0000 |
---|---|---|
committer | hiro <hiro@ee746299-78ed-0310-b773-934348b2243d> | 2005-10-12 07:27:46 +0000 |
commit | ada9a8ee0773e165a2b74029aa4856991d07cf96 (patch) | |
tree | 3f8bbaad16abedf4ed8f4cd7683e16d8e1ad56be /src/main.c | |
parent | 7cc21497c1257b20c5e1818c0cd56bff14b7b7b1 (diff) |
fixed prefix on G_LOG_LEVEL_WARNING.
git-svn-id: svn://sylpheed.sraoss.jp/sylpheed/trunk@637 ee746299-78ed-0310-b773-934348b2243d
Diffstat (limited to 'src/main.c')
-rw-r--r-- | src/main.c | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -644,11 +644,15 @@ static void default_log_func(const gchar *log_domain, GLogLevelFlags log_level, level = LOG_ERROR; break; case G_LOG_LEVEL_CRITICAL: - case G_LOG_LEVEL_WARNING: prefix = "CRITICAL"; file_prefix = "** "; level = LOG_WARN; break; + case G_LOG_LEVEL_WARNING: + prefix = "WARNING"; + file_prefix = "** "; + level = LOG_WARN; + break; case G_LOG_LEVEL_MESSAGE: prefix = "Message"; file_prefix = "* "; |