]> Cypherpunks.ru repositories - govpn.git/blob - src/cypherpunks.ru/govpn/logger.go
Raise copyright years
[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
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 package govpn
20
21 import (
22         "log"
23         "log/syslog"
24 )
25
26 var (
27         sysloger *log.Logger
28 )
29
30 // Enable logging to syslog, instead of default stdout log.
31 func SyslogEnable() {
32         var err error
33         sysloger, err = syslog.NewLogger(syslog.LOG_INFO, 0)
34         if err != nil {
35                 log.Fatalln(err)
36         }
37 }
38
39 // Call either syslog-related logger.Printf if SyslogEnabled,
40 // default log.Printf otherwise.
41 func Printf(f string, v ...interface{}) {
42         if sysloger == nil {
43                 log.Printf(f, v...)
44         } else {
45                 sysloger.Printf(f, v...)
46         }
47 }
48
49 // Call both default log.Printf and syslog-related one.
50 func BothPrintf(f string, v ...interface{}) {
51         log.Printf(f, v...)
52         if sysloger != nil {
53                 sysloger.Printf(f, v...)
54         }
55 }