Commit | Line | Data |
---|---|---|
e35e95ea JG |
1 | /* |
2 | * Copyright (C) 2023 Jérémie Galarneau <jeremie.galarneau@efficios.com> | |
3 | * | |
4 | * SPDX-License-Identifier: LGPL-2.1-only | |
5 | * | |
6 | */ | |
7 | ||
8 | #ifndef LTTNG_LOGGING_UTILS_H | |
9 | #define LTTNG_LOGGING_UTILS_H | |
10 | ||
11 | #include <common/error.hpp> | |
12 | ||
13 | namespace lttng { | |
14 | namespace logging { | |
15 | ||
16 | /* Output system information as logging statements. */ | |
17 | void log_system_information(lttng_error_level error_level); | |
18 | ||
19 | } /* namespace logging */ | |
20 | } /* namespace lttng */ | |
21 | ||
22 | #endif /* LTTNG_LOGGING_UTILS_H */ |