From 52d94e4f23d5c2212395ea75e6f9a8ea04b77bd9 Mon Sep 17 00:00:00 2001 From: Linas Vepstas Date: Mon, 31 May 1999 06:59:35 +0000 Subject: [PATCH] add new fatal error mesage type git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@1734 57a11ea4-9604-0410-9ed3-97b8803252fd --- src/engine/util.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/engine/util.h b/src/engine/util.h index d03e1b32bc..6db3107090 100644 --- a/src/engine/util.h +++ b/src/engine/util.h @@ -73,6 +73,7 @@ extern int loglevel[MODULE_MAX]; #endif /* utility macros */ +#define FATAL(x...) LG(1, "Fatal Error: "); LG(1, ##x); #define PERR(x...) LG(LERR, "Error: "); LG(LERR, ##x); #define PWARN(x...) LG(LWARN, "Waring: "); LG(LWARN, ##x); #define PINFO(x...) LG(LINFO, "Info: "); LG(LINFO, ##x);