* mu-log: remove some crap from the to-screen logging

This commit is contained in:
Dirk-Jan C. Binnema 2010-02-08 21:19:17 +02:00
parent b2c8f38c0c
commit b77004774c
1 changed files with 3 additions and 3 deletions

View File

@ -264,9 +264,9 @@ log_write (const char* domain, GLogLevelFlags level,
/* for serious errors, log them to stderr as well */
if (level & G_LOG_LEVEL_ERROR)
g_printerr ("mu(e): %s\n", msg);
g_printerr ("mu: %s\n", msg);
else if (level & G_LOG_LEVEL_CRITICAL)
g_printerr ("mu(c): %s\n", msg);
g_printerr ("mu: %s\n", msg);
else if (level & G_LOG_LEVEL_WARNING)
g_printerr ("mu(w): %s\n", msg);
g_printerr ("mu: %s\n", msg);
}