bin: compile lttng as C++
[lttng-tools.git] / src / bin / lttng / loglevel.h
... / ...
CommitLineData
1/*
2 * Copyright (C) 2021 Jérémie Galarneau <jeremie.galarneau@efficios.com>
3 *
4 * SPDX-License-Identifier: GPL-2.0-only
5 *
6 */
7
8#ifndef _LTTNG_LOGLEVEL_UTILS_H
9#define _LTTNG_LOGLEVEL_UTILS_H
10
11#include <lttng/lttng.h>
12#include <common/macros.h>
13
14#ifdef __cplusplus
15extern "C" {
16#endif
17
18int loglevel_name_to_value(const char *name, enum lttng_loglevel *loglevel);
19
20bool loglevel_parse_range_string(const char *str,
21 enum lttng_loglevel *min,
22 enum lttng_loglevel *max);
23
24int loglevel_log4j_name_to_value(
25 const char *name, enum lttng_loglevel_log4j *loglevel);
26
27bool loglevel_log4j_parse_range_string(const char *str,
28 enum lttng_loglevel_log4j *min,
29 enum lttng_loglevel_log4j *max);
30
31int loglevel_jul_name_to_value(
32 const char *name, enum lttng_loglevel_jul *loglevel);
33
34bool loglevel_jul_parse_range_string(const char *str,
35 enum lttng_loglevel_jul *min,
36 enum lttng_loglevel_jul *max);
37
38int loglevel_python_name_to_value(
39 const char *name, enum lttng_loglevel_python *loglevel);
40
41bool loglevel_python_parse_range_string(const char *str,
42 enum lttng_loglevel_python *min,
43 enum lttng_loglevel_python *max);
44
45const char *loglevel_value_to_name(int loglevel);
46
47const char *loglevel_log4j_value_to_name(int loglevel);
48
49const char *loglevel_jul_value_to_name(int loglevel);
50
51const char *loglevel_python_value_to_name(int loglevel);
52
53#ifdef __cplusplus
54}
55#endif
56
57#endif /* _LTTNG_LOGLEVEL_UTILS_H */
This page took 0.022945 seconds and 4 git commands to generate.