diff options
author | Thomas Markwalder <tmark@isc.org> | 2019-08-08 19:39:24 +0200 |
---|---|---|
committer | Tomek Mrugalski <tomasz@isc.org> | 2019-08-14 10:57:56 +0200 |
commit | d4c4461923cab3d157239b97416979719f39c304 (patch) | |
tree | cffd95a5f189aa71737db26fb91c1764ccdcaa2b /doc/examples/ddns/sample1.json | |
parent | [#665,!460] Implemented support in kea-dhcp6 (diff) | |
download | kea-d4c4461923cab3d157239b97416979719f39c304.tar.xz kea-d4c4461923cab3d157239b97416979719f39c304.zip |
[#665,!460] Implemented support in D2
doc/examples/ddns/sample1.json
doc/examples/kea4/advanced.json
src/bin/d2/d2_lexer.ll
src/bin/d2/d2_parser.yy
src/bin/d2/d2_lexer.cc
src/bin/d2/d2_parser.cc
src/bin/d2/d2_parser.h
src/bin/d2/location.hh
src/bin/d2/position.hh
src/bin/d2/stack.hh
src/bin/d2/tests/testdata/get_config.json
Diffstat (limited to 'doc/examples/ddns/sample1.json')
-rw-r--r-- | doc/examples/ddns/sample1.json | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/doc/examples/ddns/sample1.json b/doc/examples/ddns/sample1.json index 3d4c3be6f1..8de7b1b8b8 100644 --- a/doc/examples/ddns/sample1.json +++ b/doc/examples/ddns/sample1.json @@ -136,6 +136,7 @@ // The following configures logging. It assumes that messages with at least // informational level (info, warn, error and fatal) should be logged to stdout. +// It also specifies a custom log pattern. "loggers": [ { "name": "kea-dhcp-ddns", @@ -150,7 +151,8 @@ // kept. "flush": true, "maxsize": 204800, - "maxver": 4 + "maxver": 4, + "pattern": "%d [%c/%i] %m\n" } ], "debuglevel": 0, |