Fix: lib: pass down API function name to some helpers
[babeltrace.git] / src / lib / logging.c
CommitLineData
beb0fb75 1/*
0235b0db 2 * SPDX-License-Identifier: MIT
beb0fb75 3 *
0235b0db 4 * Copyright 2017-2018 Philippe Proulx <pproulx@efficios.com>
beb0fb75
PP
5 */
6
7#include <stdlib.h>
4fa90f32 8#include <babeltrace2/babeltrace.h>
1e0aa71d 9
350ad6c1 10#define BT_LOG_TAG "LIB/LOGGING"
c2d9d9cf 11#include "lib/logging.h"
beb0fb75 12
92e0fb04
PP
13/*
14 * This is exported because even though the Python plugin provider is a
15 * different shared object for packaging purposes, it's still considered
16 * part of the library and therefore needs the library's run-time log
17 * level.
34ae0d62
PP
18 *
19 * The default log level is NONE: we don't print logging statements for
20 * any executable which links with the library. The executable must call
21 * bt_logging_set_global_level() or the executable's user must set the
22 * `LIBBABELTRACE2_INIT_LOG_LEVEL` environment variable to enable
23 * logging.
92e0fb04 24 */
34ae0d62 25int bt_lib_log_level = BT_LOG_NONE;
beb0fb75
PP
26
27enum bt_logging_level bt_logging_get_minimal_level(void)
28{
510400a9 29 return BT_MINIMAL_LOG_LEVEL;
beb0fb75
PP
30}
31
32enum bt_logging_level bt_logging_get_global_level(void)
33{
34 return bt_lib_log_level;
35}
36
37void bt_logging_set_global_level(enum bt_logging_level log_level)
38{
39 bt_lib_log_level = log_level;
40}
41
42static
43void __attribute__((constructor)) bt_logging_ctor(void)
44{
2671dfad
PP
45 const char *v_extra = bt_version_get_development_stage() ?
46 bt_version_get_development_stage() : "";
beb0fb75 47
373c938b 48 bt_logging_set_global_level(
b0f769e2 49 bt_log_get_level_from_env("LIBBABELTRACE2_INIT_LOG_LEVEL"));
78deb913
FD
50 BT_LOGI("Babeltrace %u.%u.%u%s library loaded: "
51 "major=%u, minor=%u, patch=%u, extra=\"%s\"",
1e0aa71d
PP
52 bt_version_get_major(), bt_version_get_minor(),
53 bt_version_get_patch(), v_extra,
54 bt_version_get_major(), bt_version_get_minor(),
55 bt_version_get_patch(), v_extra);
beb0fb75 56}
This page took 0.076314 seconds and 4 git commands to generate.