* mu-log: it's not an error when moving the log file failed due to no gio

This commit is contained in:
Dirk-Jan C. Binnema
2010-08-14 13:21:24 +03:00
parent 12736b03db
commit 3f8a3ba97f

View File

@ -152,9 +152,10 @@ move_log_file (const char* logfile)
static gboolean
move_log_file (const char *logfile)
{
g_warning ("Failed to move log file '%s', because this 'mu'"
g_message ("Failed to move log file '%s', because this mu "
"was built without GIO support", logfile);
return FALSE;
return TRUE; /* ignore the error */
}
#endif /* HAVE_GIO */