diff options
author | teor <teor@torproject.org> | 2019-09-10 08:43:13 +1000 |
---|---|---|
committer | teor <teor@torproject.org> | 2019-09-10 08:43:13 +1000 |
commit | 7e22d9934658c27ba0d45455959f46207a190649 (patch) | |
tree | 09c77a57b6413205faba03854b2fec03ec612671 /src/lib/log | |
parent | 4596ead2fc88e4b1482b0f3bc8ff356daea2337b (diff) | |
parent | 2e2a35b6943810257b6917648db90ed5d46505e1 (diff) | |
download | tor-7e22d9934658c27ba0d45455959f46207a190649.tar.gz tor-7e22d9934658c27ba0d45455959f46207a190649.zip |
Merge branch 'bug31615_040' into bug31615_041
Merged modified lines from bug31615_040, and unmodified lines
from maint-0.4.1.
Diffstat (limited to 'src/lib/log')
-rw-r--r-- | src/lib/log/log_sys.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/lib/log/log_sys.c b/src/lib/log/log_sys.c index d1080f2264..826358546a 100644 --- a/src/lib/log/log_sys.c +++ b/src/lib/log/log_sys.c @@ -29,6 +29,8 @@ subsys_logging_shutdown(void) const subsys_fns_t sys_logging = { .name = "log", .supported = true, + /* Logging depends on threads, approx time, raw logging, and security. + * Most other lib modules depend on logging. */ .level = -90, .initialize = subsys_logging_initialize, .shutdown = subsys_logging_shutdown, |