qoflog.h: No such macro as G_LOG_LEVEL_FATAL

git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@19672 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
John Ralls 2010-10-18 21:54:19 +00:00
parent e10a508092
commit 657a435f38

View File

@ -173,7 +173,7 @@ void qof_log_set_default(QofLogLevel log_level);
/** Log a fatal error */
#define FATAL(format, ...) do { \
g_log (log_module, G_LOG_LEVEL_FATAL, \
g_log (log_module, G_LOG_LEVEL_ERROR, \
"[%s()] " format, PRETTY_FUNC_NAME , __VA_ARGS__); \
} while (0)
@ -225,7 +225,7 @@ void qof_log_set_default(QofLogLevel log_level);
/** Log a fatal error */
#define FATAL(format, args...) do { \
g_log (log_module, G_LOG_LEVEL_FATAL, \
g_log (log_module, G_LOG_LEVEL_ERROR, \
"[%s()] " format, PRETTY_FUNC_NAME , ## args); \
} while (0)