mirror of
git://sourceware.org/git/lvm2.git
synced 2025-01-06 17:18:29 +03:00
26 lines
363 B
C
26 lines
363 B
C
|
#include <syslog.h>
|
||
|
|
||
|
int log_tabbing = 0;
|
||
|
int log_is_open = 0;
|
||
|
|
||
|
/*
|
||
|
* Variables for various conditional logging
|
||
|
*/
|
||
|
#ifdef MEMB
|
||
|
int log_membership_change = 1;
|
||
|
#else
|
||
|
int log_membership_change = 0;
|
||
|
#endif
|
||
|
|
||
|
#ifdef CKPT
|
||
|
int log_checkpoint = 1;
|
||
|
#else
|
||
|
int log_checkpoint = 0;
|
||
|
#endif
|
||
|
|
||
|
#ifdef RESEND
|
||
|
int log_resend_requests = 1;
|
||
|
#else
|
||
|
int log_resend_requests = 0;
|
||
|
#endif
|