mirror of
https://github.com/zeek/zeek.git
synced 2025-10-08 17:48:21 +00:00
Merge remote-tracking branch 'origin/master' into topic/johanna/clone
This commit is contained in:
commit
d13c939233
1389 changed files with 5408 additions and 12577 deletions
|
@ -535,9 +535,6 @@ public:
|
|||
// values. (In any case, don't forget to call the parent's method.)
|
||||
typedef char Properties;
|
||||
|
||||
static const int PERSISTENT = 0x01;
|
||||
static const int SYNCHRONIZED = 0x02;
|
||||
|
||||
// Tracked by NotifierRegistry, not recursive.
|
||||
static const int TRACKED = 0x04;
|
||||
|
||||
|
@ -551,10 +548,10 @@ public:
|
|||
bool LoggingAccess() const
|
||||
{
|
||||
#ifndef DEBUG
|
||||
return props & (SYNCHRONIZED|PERSISTENT|TRACKED);
|
||||
return props & TRACKED;
|
||||
#else
|
||||
return debug_logger.IsVerbose() ||
|
||||
(props & (SYNCHRONIZED|PERSISTENT|TRACKED));
|
||||
(props & TRACKED);
|
||||
#endif
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue