* src/toolbox/tree.c: Removed.
[cacao.git] / src / toolbox / logging.h
index c14f6ddf22b66f2d11df9689104f858ece56f7bf..bcf2e65389eb0037c7f7fe153f9899043c758b0d 100644 (file)
@@ -1,9 +1,7 @@
 /* src/toolbox/logging.h - contains logging functions
 
-   Copyright (C) 1996-2005, 2006 R. Grafl, A. Krall, C. Kruegel,
-   C. Oates, R. Obermaisser, M. Platter, M. Probst, S. Ring,
-   E. Steiner, C. Thalinger, D. Thuernbeck, P. Tomsich, C. Ullrich,
-   J. Wenninger, Institut f. Computersprachen - TU Wien
+   Copyright (C) 1996-2005, 2006, 2007, 2008
+   CACAOVM - Verein zur Foerderung der freien virtuellen Maschine CACAO
 
    This file is part of CACAO.
 
    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
    02110-1301, USA.
 
-   Contact: cacao@cacaojvm.org
-
-   Authors: Reinhard Grafl
-
-   Changes: Christan Thalinger
-
-   $Id: logging.h 4375 2006-01-27 17:35:13Z twisti $
-
 */
 
 
 #include "config.h"
 
 #include <stdio.h>
+#include <stdarg.h>
 
 #include "vm/class.h"
 #include "vm/method.h"
 #include "vm/utf8.h"
 
 
-/*500 is to small for eclipse traces, (builtin_trace_args, perhaps the
-buffer should be created there dynamically, if the text is longer,
-instead of setting the size for all invocations that big*/
-
-#define MAXLOGTEXT  16383 
+#ifdef __cplusplus
+extern "C" {
+#endif
 
 /* function prototypes ********************************************************/
 
@@ -57,6 +46,7 @@ void log_init(const char *fname);
 
 void log_start(void);
 
+void log_vprint(const char *text, va_list ap);
 void log_print(const char *text, ...);
 void log_println(const char *text, ...);
 
@@ -70,9 +60,13 @@ void log_message_class_message_class(const char *msg1, classinfo *c1,
                                                                         const char *msg2, classinfo *c2);
 void log_message_method(const char *msg, methodinfo *m);
 
-#define log_text log_println
+#define log_text(s) log_println("%s", (s))
 #define dolog log_println
 
+#ifdef __cplusplus
+}
+#endif
+
 #endif /* _LOGGING_H */