1 /*(GPL)
2 ------------------------------------------------------------
3    Kobo Deluxe - Logger definitions
4 ------------------------------------------------------------
5  * Copyright (C) 2003, David Olofson
6  *
7  * This program is free software; you can redistribute it and/or modify it
8  * under the terms of the GNU General Public License as published by the
9  * Free Software Foundation; either version 2 of the License, or (at your
10  * option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful, but
13  * WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License along
18  * with this program; if not, write to the Free Software Foundation, Inc.,
19  * 675 Mass Ave, Cambridge, MA 02139, USA.
20  */
21 
22 #ifndef	KOBOLOG_H
23 #define	KOBOLOG_H
24 
25 #include "logger.h"
26 
27 #ifdef __cplusplus
28 extern "C" {
29 #endif
30 
31 /* Critical error messages: "Huston, we have a problem." */
32 #define	CELOG	5
33 
34 /* Debug messages; level 2: Detailed */
35 #define	D2LOG	6
36 
37 /* Debug messages; level 3: Deep Hack Mode stuff */
38 #define	D3LOG	7
39 
40 #ifdef __cplusplus
41 };
42 #endif
43 
44 #endif	/* KOBOLOG_H */
45