mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2025-02-25 07:07:52 +01:00
Fix log levels notice and warn for new logging stuff
svn:r5313
This commit is contained in:
parent
a38aa81bf8
commit
0738c24b97
1 changed files with 2 additions and 2 deletions
|
@ -134,9 +134,9 @@ void _log_fn(int severity, unsigned int domain,
|
|||
#define info(domain, args...) \
|
||||
_log_fn(LOG_INFO, domain, __PRETTY_FUNCTION__, args)
|
||||
#define notice(domain, args...) \
|
||||
_log_fn(LOG_INFO, domain, __PRETTY_FUNCTION__, args)
|
||||
_log_fn(LOG_NOTICE, domain, __PRETTY_FUNCTION__, args)
|
||||
#define warn(domain, args...) \
|
||||
_log_fn(LOG_INFO, domain, __PRETTY_FUNCTION__, args)
|
||||
_log_fn(LOG_WARN, domain, __PRETTY_FUNCTION__, args)
|
||||
#define err(domain, args...) \
|
||||
_log_fn(LOG_ERR, domain, __PRETTY_FUNCTION__, args)
|
||||
#else
|
||||
|
|
Loading…
Add table
Reference in a new issue