diff options
author | Roger Dingledine <arma@torproject.org> | 2005-10-25 17:58:43 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2005-10-25 17:58:43 +0000 |
commit | d7e136240a59f75985b1b752b07564150ea1acb4 (patch) | |
tree | 3f91b4668c3b9906e351e0c55373db9201ca3ddf | |
parent | 049f6c01310006e9c30fedd46ecda44b7d1d5570 (diff) | |
download | tor-d7e136240a59f75985b1b752b07564150ea1acb4.tar tor-d7e136240a59f75985b1b752b07564150ea1acb4.tar.gz |
consistency is the hobgoblin of little armas
svn:r5316
-rw-r--r-- | src/common/log.h | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/src/common/log.h b/src/common/log.h index 11a959b6d..20b0e689c 100644 --- a/src/common/log.h +++ b/src/common/log.h @@ -52,29 +52,29 @@ /* Logging domains */ -/** Catch-all for miscellaneous events and fatal errors */ +/** Catch-all for miscellaneous events and fatal errors. */ #define LD_GENERAL (1u<<0) -/** The cryptography subsytem */ +/** The cryptography subsytem. */ #define LD_CRYPTO (1u<<1) -/** Networking */ +/** Networking. */ #define LD_NET (1u<<2) -/** Parsing and acting on our configuration */ +/** Parsing and acting on our configuration. */ #define LD_CONFIG (1u<<3) -/** Reading and writing from the filesystem */ +/** Reading and writing from the filesystem. */ #define LD_FS (1u<<4) -/** Other servers' (non)compliance with the Tor protocol */ +/** Other servers' (non)compliance with the Tor protocol. */ #define LD_PROTOCOL (1u<<5) -/** Memory management */ +/** Memory management. */ #define LD_MM (1u<<6) -/** HTTP implementation */ +/** HTTP implementation. */ #define LD_HTTP (1u<<7) -/** Application (socks) requests */ +/** Application (socks) requests. */ #define LD_APP (1u<<8) -/** Communication via the controller protocol */ +/** Communication via the controller protocol. */ #define LD_CONTROL (1u<<9) -/** Building, using, and managing circuits */ +/** Building, using, and managing circuits. */ #define LD_CIRC (1u<<10) -/** Hidden services */ +/** Hidden services. */ #define LD_REND (1u<<11) /** Internal errors in this Tor process. */ #define LD_BUG (1u<<12) |