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