Go to the source code of this file.
◆ pcmk__config_err
#define pcmk__config_err |
( |
|
fmt... | ) |
|
Value:do { \
crm_config_error = TRUE; \
crm_err(fmt); \
} while (0)
Definition at line 29 of file logging_internal.h.
◆ pcmk__config_warn
#define pcmk__config_warn |
( |
|
fmt... | ) |
|
Value:do { \
crm_config_warning = TRUE; \
crm_warn(fmt); \
} while (0)
Definition at line 41 of file logging_internal.h.
◆ pcmk__if_tracing
#define pcmk__if_tracing |
( |
|
if_action, |
|
|
|
else_action |
|
) |
| |
Value:do { \
static struct qb_log_callsite *trace_cs = NULL; \
\
if (trace_cs == NULL) { \
trace_cs = qb_log_callsite_get(__func__, __FILE__, \
} \
if_action; \
} else { \
else_action; \
} \
} while (0)
unsigned int crm_trace_nonlog
gboolean crm_is_callsite_active(struct qb_log_callsite *cs, uint8_t level, uint32_t tags)
Definition at line 59 of file logging_internal.h.
◆ PCMK__LOGGING_INTERNAL_H
#define PCMK__LOGGING_INTERNAL_H |
◆ pcmk__add_logfile()
int pcmk__add_logfile |
( |
const char * |
filename | ) |
|
Add a file to be used as a Pacemaker detail log.
- Parameters
-
[in] | filename | Name of log file to use |
- Returns
- Standard Pacemaker return code
Definition at line 312 of file logging.c.
◆ pcmk__add_logfiles()
Add multiple additional log files.
- Parameters
-
[in] | log_files | Array of log files to add |
[in] | out | Output object to use for error reporting |
- Returns
- Standard Pacemaker return code
Definition at line 396 of file logging.c.
◆ pcmk__cli_init_logging()
void pcmk__cli_init_logging |
( |
const char * |
name, |
|
|
unsigned int |
verbosity |
|
) |
| |
◆ pcmk__free_common_logger()
void pcmk__free_common_logger |
( |
void |
| ) |
|