missing files
[psensor.git] / src / lib / log.c
1 /*
2     Copyright (C) 2010-2011 jeanfi@gmail.com
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
17     02110-1301 USA
18 */
19
20 #include <locale.h>
21 #include <libintl.h>
22 #define _(str) gettext(str)
23
24 #include <stdio.h>
25
26 #include "log.h"
27
28 static FILE *file;
29 static int log_level =  LOG_DEBUG;
30
31 void log_open(const char *path, int lvl)
32 {
33         file = fopen(path, "a");
34
35         if (file)
36                 log_puts(LOG_INFO, "Start logging");
37         else
38                 fprintf(stderr, _("Cannot open log file: %s\n"), path);
39 }
40
41 void log_puts(int lvl, const char *msg)
42 {
43         if (!file || lvl > log_level)
44                 return ;
45
46         switch (lvl) {
47         case LOG_WARN:
48                 fputs("[WARN] ", file);
49                 break;
50         case LOG_ERR:
51                 fputs("[ERR] ", file);
52                 break;
53         case LOG_DEBUG:
54                 fputs("[DEBUG] ", file);
55                 break;
56         case LOG_INFO:
57                 fputs("[INFO] ", file);
58                 break;
59         default:
60                 fputs("[??] ", file);
61         }
62
63         fputs(msg, file);
64         fputc('\n', file);
65
66         fflush(file);
67 }
68
69 void log_close()
70 {
71         if (!file)
72                 return ;
73
74         fclose(file);
75
76         file = NULL;
77 }
78