diff options
author | Matthias Schiffer <mschiffer@universe-factory.net> | 2012-05-18 03:08:40 +0200 |
---|---|---|
committer | Matthias Schiffer <mschiffer@universe-factory.net> | 2012-05-18 03:08:40 +0200 |
commit | b34b3e2817950c6cccbc9cf2fce8cc137f433a88 (patch) | |
tree | 973428ea13a6d36b7658644d6f32f21edaea9a10 /src/config.l | |
parent | a2b9f2c732232200fd4822e34d60d4c7f5ad37d2 (diff) | |
download | fastd-b34b3e2817950c6cccbc9cf2fce8cc137f433a88.tar fastd-b34b3e2817950c6cccbc9cf2fce8cc137f433a88.zip |
New logging facilities
Diffstat (limited to 'src/config.l')
-rw-r--r-- | src/config.l | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/config.l b/src/config.l index 963a05b..4f7dd7f 100644 --- a/src/config.l +++ b/src/config.l @@ -80,6 +80,9 @@ peers { UPDATE_LOCATION; return TOK_PEERS; } from { UPDATE_LOCATION; return TOK_FROM; } log { UPDATE_LOCATION; return TOK_LOG; } level { UPDATE_LOCATION; return TOK_LEVEL; } +syslog { UPDATE_LOCATION; return TOK_SYSLOG; } +stderr { UPDATE_LOCATION; return TOK_STDERR; } +to { UPDATE_LOCATION; return TOK_TO; } fatal { UPDATE_LOCATION; return TOK_FATAL; } error { UPDATE_LOCATION; return TOK_ERROR; } warn { UPDATE_LOCATION; return TOK_WARN; } |