liblttng-ctl: use export list to define exported symbols
[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
14int loglevel_name_to_value(const char *name, enum lttng_loglevel *loglevel);
15
16bool loglevel_parse_range_string(const char *str,
17 enum lttng_loglevel *min,
18 enum lttng_loglevel *max);
19
20int loglevel_log4j_name_to_value(
21 const char *name, enum lttng_loglevel_log4j *loglevel);
22
23bool loglevel_log4j_parse_range_string(const char *str,
24 enum lttng_loglevel_log4j *min,
25 enum lttng_loglevel_log4j *max);
26
27int loglevel_jul_name_to_value(
28 const char *name, enum lttng_loglevel_jul *loglevel);
29
30bool loglevel_jul_parse_range_string(const char *str,
31 enum lttng_loglevel_jul *min,
32 enum lttng_loglevel_jul *max);
33
34int loglevel_python_name_to_value(
35 const char *name, enum lttng_loglevel_python *loglevel);
36
37bool loglevel_python_parse_range_string(const char *str,
38 enum lttng_loglevel_python *min,
39 enum lttng_loglevel_python *max);
40
41const char *loglevel_value_to_name(int loglevel);
42
43const char *loglevel_log4j_value_to_name(int loglevel);
44
45const char *loglevel_jul_value_to_name(int loglevel);
46
47const char *loglevel_python_value_to_name(int loglevel);
48
49#endif /* _LTTNG_LOGLEVEL_UTILS_H */
This page took 0.022511 seconds and 4 git commands to generate.