diff options
author | teor <teor@torproject.org> | 2019-09-10 09:03:37 +1000 |
---|---|---|
committer | teor <teor@torproject.org> | 2019-09-10 09:03:37 +1000 |
commit | 987768b07766e752d7aa7234916abe1e8e2feb87 (patch) | |
tree | 4952b592b5cb39911eed33405b1433d249dc4c70 /src/lib/log | |
parent | 796a9b37ea346f413f6684505ca31879ddf3f0f1 (diff) | |
parent | f1c57cd1e5d8ae88f28f764fef7f17081ebf2961 (diff) | |
download | tor-987768b07766e752d7aa7234916abe1e8e2feb87.tar.gz tor-987768b07766e752d7aa7234916abe1e8e2feb87.zip |
Merge branch 'bug31615_041' into bug31615_master
Merged modified lines from bug31615_041, and unmodified lines
from master.
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, |