]> Cypherpunks.ru repositories - govpn.git/blob - src/cypherpunks.ru/govpn/logger.go
f38a245f08a7e56c2e136bf9e41e42a1a6186f6b
[govpn.git] / src / cypherpunks.ru / govpn / logger.go
1 /*
2 GoVPN -- simple secure free software virtual private network daemon
3 Copyright (C) 2014-2017 Sergey Matveev <stargrave@stargrave.org>
4               2016-2017 Bruno Clermont <bruno@robotinfra.com>
5
6 This program is free software: you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation, either version 3 of the License, or
9 (at your option) any later version.
10
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with this program.  If not, see <http://www.gnu.org/licenses/>.
18 */
19
20 package govpn
21
22 import (
23         "log"
24         "log/syslog"
25 )
26
27 var (
28         sysloger *log.Logger
29 )
30
31 // Enable logging to syslog, instead of default stdout log.
32 func SyslogEnable() {
33         var err error
34         sysloger, err = syslog.NewLogger(syslog.LOG_INFO, 0)
35         if err != nil {
36                 log.Fatalln(err)
37         }
38 }
39
40 // Call either syslog-related logger.Printf if SyslogEnabled,
41 // default log.Printf otherwise.
42 func Printf(f string, v ...interface{}) {
43         if sysloger == nil {
44                 log.Printf(f, v...)
45         } else {
46                 sysloger.Printf(f, v...)
47         }
48 }
49
50 // Call both default log.Printf and syslog-related one.
51 func BothPrintf(f string, v ...interface{}) {
52         log.Printf(f, v...)
53         if sysloger != nil {
54                 sysloger.Printf(f, v...)
55         }
56 }