blob: afe513e24e7f830d37add2c1d29f9d0aa8914bd3 (
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
|
--- a/conf/options/charon-logging.conf 2019-01-09 13:52:45.000000000 +0100
+++ b/conf/options/charon-logging.conf 2019-01-09 13:58:06.576971793 +0100
@@ -1,74 +1,10 @@
charon {
-
- # Section to define file loggers, see LOGGER CONFIGURATION in
- # strongswan.conf(5).
- filelog {
-
- # <name> may be the full path to the log file if it only contains
- # characters permitted in section names. Is ignored if path is
- # specified.
- # <name> {
-
- # Loglevel for a specific subsystem.
- # <subsystem> = <default>
-
- # If this option is enabled log entries are appended to the existing
- # file.
- # append = yes
-
- # Default loglevel.
- # default = 1
-
- # Enabling this option disables block buffering and enables line
- # buffering.
- # flush_line = no
-
- # Prefix each log entry with the connection name and a unique
- # numerical identifier for each IKE_SA.
- # ike_name = no
-
- # Optional path to the log file. Overrides the section name. Must be
- # used if the path contains characters that aren't allowed in
- # section names.
- # path =
-
- # Adds the milliseconds within the current second after the
- # timestamp (separated by a dot, so time_format should end with %S
- # or %T).
- # time_add_ms = no
-
- # Prefix each log entry with a timestamp. The option accepts a
- # format string as passed to strftime(3).
- # time_format =
-
- # }
-
- }
-
- # Section to define syslog loggers, see LOGGER CONFIGURATION in
- # strongswan.conf(5).
syslog {
-
- # Identifier for use with openlog(3).
- # identifier =
-
- # <facility> is one of the supported syslog facilities, see LOGGER
- # CONFIGURATION in strongswan.conf(5).
- # <facility> {
-
- # Loglevel for a specific subsystem.
- # <subsystem> = <default>
-
- # Default loglevel.
- # default = 1
-
- # Prefix each log entry with the connection name and a unique
- # numerical identifier for each IKE_SA.
- # ike_name = no
-
- # }
-
+ # prefix for each log message
+ identifier = charon
+ # use default settings to log to the LOG_DAEMON facility
+ daemon {
+ default = 1
+ }
}
-
}
-
|