mirror of
https://github.com/libvirt/libvirt.git
synced 2025-02-25 18:55:26 -06:00
log: rename virLogFlags to virLogFilterFlags to match docs
Reviewed-by: Erik Skultety <eskultet@redhat.com> Reviewed-by: John Ferlan <jferlan@redhat.com> Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
This commit is contained in:
parent
ebad530e9f
commit
4a239d1509
@ -87,7 +87,7 @@ VIR_ENUM_IMPL(virLogDestination, VIR_LOG_TO_OUTPUT_LAST,
|
|||||||
struct _virLogFilter {
|
struct _virLogFilter {
|
||||||
char *match;
|
char *match;
|
||||||
virLogPriority priority;
|
virLogPriority priority;
|
||||||
unsigned int flags;
|
unsigned int flags; /* bitwise OR of virLogFilterFlags */
|
||||||
};
|
};
|
||||||
|
|
||||||
static int virLogFiltersSerial = 1;
|
static int virLogFiltersSerial = 1;
|
||||||
|
@ -174,7 +174,7 @@ typedef void (*virLogCloseFunc) (void *data);
|
|||||||
|
|
||||||
typedef enum {
|
typedef enum {
|
||||||
VIR_LOG_STACK_TRACE = (1 << 0),
|
VIR_LOG_STACK_TRACE = (1 << 0),
|
||||||
} virLogFlags;
|
} virLogFilterFlags;
|
||||||
|
|
||||||
int virLogGetNbFilters(void);
|
int virLogGetNbFilters(void);
|
||||||
int virLogGetNbOutputs(void);
|
int virLogGetNbOutputs(void);
|
||||||
|
Loading…
Reference in New Issue
Block a user