diff options
author | Nick Mathewson <nickm@torproject.org> | 2011-01-25 15:03:36 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2011-01-25 15:03:36 -0500 |
commit | e261a1a3e6513eeafa1b53b83ebfec7f5d834a39 (patch) | |
tree | fb6372b87f8d1a2a658d92b189b6c071fe904dc1 /changes | |
parent | 23f8bedddb1b3497ea8bbafef90ae24893be9a9e (diff) | |
download | tor-e261a1a3e6513eeafa1b53b83ebfec7f5d834a39.tar tor-e261a1a3e6513eeafa1b53b83ebfec7f5d834a39.tar.gz |
Simplify syntax for negated log domains
Previously if you wanted to say "All messages except network
messages", you needed to say "[*,~net]" and if you said "[~net]" by
mistake, you would get no messages at all. Now, if you say "[~net]",
you get everything except networking messages.
Diffstat (limited to 'changes')
-rw-r--r-- | changes/log_domains | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/changes/log_domains b/changes/log_domains index f4cfe6f4d..939b9a9e7 100644 --- a/changes/log_domains +++ b/changes/log_domains @@ -1,5 +1,9 @@ - o Documentation + o Minor features + - Make it simpler to specify "All log domains except for A and B". + Previously you needed to say "[*,~A,~B]". Now you can just say + "[~A,~B]". + o Documentation - Add documentation for configuring logging at different severities in different log domains. We've had this feature since 0.2.1.1-alpha, but for some reason it never made it into the manpage. Fixes bug 2215. |