1 /*
2  *      rsvndump - remote svn repository dump
3  *      Copyright (C) 2008-2012 Jonas Gehring
4  *
5  *      This program is free software: you can redistribute it and/or modify
6  *      it under the terms of the GNU General Public License as published by
7  *      the Free Software Foundation, either version 3 of the License, or
8  *      (at your option) any later version.
9  *
10  *      This program is distributed in the hope that it will be useful,
11  *      but WITHOUT ANY WARRANTY; without even the implied warranty of
12  *      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  *      GNU General Public License for more details.
14  *
15  *      You should have received a copy of the GNU General Public License
16  *      along with this program.  If not, see <http://www.gnu.org/licenses/>.
17  *
18  *
19  *      file: logger.h
20  *      desc: Simple logging to stderr
21  */
22 
23 
24 #ifndef LOGGER_H_
25 #define LOGGER_H_
26 
27 
28 /* Global variable: verbosity level */
29 extern int loglevel;
30 
31 extern int L0(const char *format, ...);
32 extern int L1(const char *format, ...);
33 extern int L2(const char *format, ...);
34 
35 extern int LDEBUG(const char *format, ...);
36 #define DEBUG_MSG LDEBUG
37 
38 
39 #endif
40