diff options
author | Nick Mathewson <nickm@torproject.org> | 2005-10-24 18:37:09 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2005-10-24 18:37:09 +0000 |
commit | a20835ac920b446e808116dad8ba6cf9c7d18a7e (patch) | |
tree | 10d3e916da8377298aa1244568af8e3ce9b1b6de /src/common/log.h | |
parent | e2c6d6ce201f228fc3f0c48cdbb06c9934369c81 (diff) | |
download | tor-a20835ac920b446e808116dad8ba6cf9c7d18a7e.tar.gz tor-a20835ac920b446e808116dad8ba6cf9c7d18a7e.zip |
Check for even more windows version flags, and note any we do not recognize.
svn:r5297
Diffstat (limited to 'src/common/log.h')
-rw-r--r-- | src/common/log.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/common/log.h b/src/common/log.h index d31d866c74..a33dd4ccd4 100644 --- a/src/common/log.h +++ b/src/common/log.h @@ -52,8 +52,7 @@ /* Logging domains */ -/** Catch-all for miscellaneous events and internal errors and fatal - * errors. */ +/** Catch-all for miscellaneous events and fatal errors */ #define LD_GENERAL 0 /** The cryptography subsytem */ #define LD_CRYPTO 1 @@ -77,6 +76,10 @@ #define LD_CIRC 10 /** Hidden services */ #define LD_REND 11 +/** Internal errors in this Tor process. */ +#define LD_BUG 12 +/** Learning and using information about Tor servers. */ +#define LD_DIR 13 typedef void (*log_callback)(int severity, int domain, const char *msg); |