Qpid Proton C API 0.39.0
 
Loading...
Searching...
No Matches
logger.h
Go to the documentation of this file.
1#ifndef LOGGER_H
2#define LOGGER_H
3/*
4 * Licensed to the Apache Software Foundation (ASF) under one
5 * or more contributor license agreements. See the NOTICE file
6 * distributed with this work for additional information
7 * regarding copyright ownership. The ASF licenses this file
8 * to you under the Apache License, Version 2.0 (the
9 * "License"); you may not use this file except in compliance
10 * with the License. You may obtain a copy of the License at
11 *
12 * http://www.apache.org/licenses/LICENSE-2.0
13 *
14 * Unless required by applicable law or agreed to in writing,
15 * software distributed under the License is distributed on an
16 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
17 * KIND, either express or implied. See the License for the
18 * specific language governing permissions and limitations
19 * under the License.
20 */
21
31#include <proton/import_export.h>
32
33#include <stdarg.h>
34#include <stdint.h>
35
36#ifdef __cplusplus
37extern "C" {
38#endif
39
85typedef struct pn_logger_t pn_logger_t;
86
92typedef enum pn_log_subsystem_t {
101 PN_SUBSYSTEM_ALL = 65535
102} pn_log_subsystem_t; /* We hint to the compiler it can use 16 bits for this value */
103
109typedef enum pn_log_level_t {
119 PN_LEVEL_ALL = 65535
120} pn_log_level_t; /* We hint to the compiler that it can use 16 bits for this value */
121
125typedef void (*pn_log_sink_t)(intptr_t sink_context, pn_log_subsystem_t subsystem, pn_log_level_t severity, const char *message);
126
133
140PN_EXTERN const char *pn_logger_level_name(pn_log_level_t level);
141
148PN_EXTERN const char *pn_logger_subsystem_name(pn_log_subsystem_t subsystem);
149
170PN_EXTERN void pn_logger_set_mask(pn_logger_t *logger, uint16_t subsystem, uint16_t level);
171
192PN_EXTERN void pn_logger_reset_mask(pn_logger_t *logger, uint16_t subsystem, uint16_t level);
193
205PN_EXTERN void pn_logger_set_log_sink(pn_logger_t *logger, pn_log_sink_t sink, intptr_t sink_context);
206
214
221PN_EXTERN intptr_t pn_logger_get_log_sink_context(pn_logger_t *logger);
222
234PN_EXTERN void pn_logger_logf(pn_logger_t *logger, pn_log_subsystem_t subsystem, pn_log_level_t level, const char *fmt, ...);
235
236#ifdef __cplusplus
237}
238#endif
239
244#endif
pn_logger_t * pn_default_logger(void)
Return the default library logger.
void pn_logger_logf(pn_logger_t *logger, pn_log_subsystem_t subsystem, pn_log_level_t level, const char *fmt,...)
Log a printf formatted message using the logger.
const char * pn_logger_level_name(pn_log_level_t level)
Get a human readable name for a logger severity.
intptr_t pn_logger_get_log_sink_context(pn_logger_t *logger)
Get the sink context used by a logger.
const char * pn_logger_subsystem_name(pn_log_subsystem_t subsystem)
Get a human readable name for a logger subsystem.
void(* pn_log_sink_t)(intptr_t sink_context, pn_log_subsystem_t subsystem, pn_log_level_t severity, const char *message)
Callback for sinking logger messages.
Definition: logger.h:125
void pn_logger_set_log_sink(pn_logger_t *logger, pn_log_sink_t sink, intptr_t sink_context)
Set the tracing function used by a logger.
void pn_logger_reset_mask(pn_logger_t *logger, uint16_t subsystem, uint16_t level)
Clear a logger's tracing flags.
void pn_logger_set_mask(pn_logger_t *logger, uint16_t subsystem, uint16_t level)
Set a logger's tracing flags.
pn_log_subsystem_t
Definitions for different subsystems that can log messages.
Definition: logger.h:92
pn_log_sink_t pn_logger_get_log_sink(pn_logger_t *logger)
Get the tracing function used by a logger.
pn_log_level_t
Definitions for different severities of log messages Note that these are exclusive bits so that you c...
Definition: logger.h:109
struct pn_logger_t pn_logger_t
The logger object allows library logging to be controlled.
Definition: logger.h:85
@ PN_SUBSYSTEM_NONE
No subsystem.
Definition: logger.h:93
@ PN_SUBSYSTEM_IO
Low level Input/Output.
Definition: logger.h:95
@ PN_SUBSYSTEM_SSL
TLS/SSL protocol processing.
Definition: logger.h:98
@ PN_SUBSYSTEM_MEMORY
Memory usage.
Definition: logger.h:94
@ PN_SUBSYSTEM_EVENT
Events.
Definition: logger.h:96
@ PN_SUBSYSTEM_AMQP
AMQP protocol processing.
Definition: logger.h:97
@ PN_SUBSYSTEM_BINDING
Language binding.
Definition: logger.h:100
@ PN_SUBSYSTEM_ALL
Every subsystem.
Definition: logger.h:101
@ PN_SUBSYSTEM_SASL
SASL protocol processing.
Definition: logger.h:99
@ PN_LEVEL_FRAME
Protocol frame traces.
Definition: logger.h:117
@ PN_LEVEL_TRACE
Detail about something that happened.
Definition: logger.h:116
@ PN_LEVEL_RAW
Raw protocol bytes.
Definition: logger.h:118
@ PN_LEVEL_ERROR
Something went wrong.
Definition: logger.h:112
@ PN_LEVEL_NONE
No level.
Definition: logger.h:110
@ PN_LEVEL_WARNING
Something unusual happened but not necessarily an error.
Definition: logger.h:113
@ PN_LEVEL_DEBUG
Something you might want to know about happened.
Definition: logger.h:115
@ PN_LEVEL_CRITICAL
Something is wrong and can't be fixed - probably a library bug.
Definition: logger.h:111
@ PN_LEVEL_INFO
Something that might be interesting happened.
Definition: logger.h:114
@ PN_LEVEL_ALL
Every possible level.
Definition: logger.h:119