Blender V4.3
intern/logging.h
Go to the documentation of this file.
1/* SPDX-FileCopyrightText: 2011 Blender Authors
2 *
3 * SPDX-License-Identifier: GPL-2.0-or-later */
4
5#ifndef LIBMV_C_API_LOGGING_H_
6#define LIBMV_C_API_LOGGING_H_
7
8#ifdef __cplusplus
9extern "C" {
10#endif
11
12// Initialize GLog logging.
13void libmv_initLogging(const char* argv0);
14
15// Switch Glog to debug logging level.
17
18// Set GLog logging verbosity level.
19void libmv_setLoggingVerbosity(int verbosity);
20
21#ifdef __cplusplus
22}
23#endif
24
25#endif // LIBMV_C_API_LOGGING_H_
void libmv_setLoggingVerbosity(int verbosity)
Definition logging.cc:42
void libmv_startDebugLogging(void)
Definition logging.cc:32
void libmv_initLogging(const char *argv0)
Definition logging.cc:21