summaryrefslogtreecommitdiffstats
path: root/src/globals.h
blob: 0f1a586de461ab183548646df8485d47324d25a0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
/*
 * Copyright (C) 2012  Radek Novacek <rnovacek@redhat.com>
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version 2
 * of the License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, see <http://www.gnu.org/licenses/>.
 */

#ifndef GLOBALS_H
#define GLOBALS_H

const char *get_system_name();

const char *get_system_creation_class_name();

int log_level(void);
void set_log_level(int level);

enum { NONE=0, ERROR, WARN, DEBUG };
void _debug(int level, const char *file, int line, const char *format, ...);
#define debug(...) _debug(DEBUG, __FILE__, __LINE__, __VA_ARGS__)
#define warn(...) _debug(WARN, __FILE__, __LINE__, __VA_ARGS__)
#define error(...) _debug(ERROR, __FILE__, __LINE__, __VA_ARGS__)

#endif