aboutsummaryrefslogtreecommitdiffstats
path: root/camel/camel-log.h
diff options
context:
space:
mode:
authorbertrand <Bertrand.Guiheneuf@inria.fr>1999-04-19 04:24:26 +0800
committerBertrand Guiheneuf <bertrand@src.gnome.org>1999-04-19 04:24:26 +0800
commitcaeedddbe6297eda63b386a8955546b41d6543bf (patch)
treeffe51d1cd4f469ef6bd707d1178a2de94bfb995c /camel/camel-log.h
parentb6df9d55cb6d3b348c831f4591398a0acc8247d9 (diff)
downloadgsoc2013-evolution-caeedddbe6297eda63b386a8955546b41d6543bf.tar
gsoc2013-evolution-caeedddbe6297eda63b386a8955546b41d6543bf.tar.gz
gsoc2013-evolution-caeedddbe6297eda63b386a8955546b41d6543bf.tar.bz2
gsoc2013-evolution-caeedddbe6297eda63b386a8955546b41d6543bf.tar.lz
gsoc2013-evolution-caeedddbe6297eda63b386a8955546b41d6543bf.tar.xz
gsoc2013-evolution-caeedddbe6297eda63b386a8955546b41d6543bf.tar.zst
gsoc2013-evolution-caeedddbe6297eda63b386a8955546b41d6543bf.zip
started implementation typo uncommented the store related code.
1999-04-18 bertrand <Bertrand.Guiheneuf@inria.fr> * camel/camel-store.[ch]: started implementation * camel/camel-folder.c (camel_folder_get_type): typo uncommented the store related code. (camel_folder_create): enable som store relted code. Not finished. Have to define public methods first. * camel/camel-log.h: some explanation about the log system svn path=/trunk/; revision=854
Diffstat (limited to 'camel/camel-log.h')
-rw-r--r--camel/camel-log.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/camel/camel-log.h b/camel/camel-log.h
index fd96461258..2e68fdc770 100644
--- a/camel/camel-log.h
+++ b/camel/camel-log.h
@@ -35,7 +35,13 @@ typedef enum {
NO_LOG = 0,
FULL_DEBUG = 10
} CamelLogLevel;
-
+
+/* the goal here is to be able to have a hard maximum log
+level, given at compilation time, and a soft one, given at
+runtime (with camel_debug_level). For the moment, only
+soft level is implmented, but one day, when performance
+become important, I will set the hard one too */
+
#define CAMEL_LOG(level, args...) camel_log(level,##args)
extern void camel_log(CamelLogLevel level, const gchar *format, ... );