Merge branch 'tor-gitlab/mr/583' into maint-0.4.7
[tor.git] / src / lib / defs / logging_types.h
blobf7876df3b557db214a87ec9cc0ccd3977c4b1f05
1 /* Copyright (c) 2001, Matej Pfajfar.
2 * Copyright (c) 2001-2004, Roger Dingledine.
3 * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
4 * Copyright (c) 2007-2021, The Tor Project, Inc. */
5 /* See LICENSE for licensing information */
7 /**
8 * \file logging_types.h
10 * \brief Global definition for types used by logging systems.
11 **/
13 #ifndef TOR_LOGGING_TYPES_H
14 #define TOR_LOGGING_TYPES_H
16 /* We define this here so that it can be used both by backtrace.h and
17 * log.h.
20 /** Mask of zero or more log domains, OR'd together. */
21 typedef uint64_t log_domain_mask_t;
23 #endif /* !defined(TOR_LOGGING_TYPES_H) */