LeiaSR SDK 720218b2 v1.32.7.6322 2025-02-13T14:55:38Z
Stable
logging.h
Go to the documentation of this file.
1
5#pragma once
6#include <string>
7#include <ostream>
8
9#ifdef WIN32
10# ifdef COMPILING_DLL_SimulatedRealityCore
11# define DIMENCOSR_API __declspec(dllexport)
12# else
13# define DIMENCOSR_API __declspec(dllimport)
14# endif
15#else
16# define DIMENCOSR_API
17#endif
18
19namespace SR {
20
24enum Verbosity : int {
28 NoLogging = 3
29};
30
39public:
57 static void initialize(Verbosity verbosity, std::string logPath, std::string logFilePrefix);
58
77 static void initializeToFile(Verbosity verbosity, std::string logPath, std::string logFilePrefix);
78
84 static void debugInfo(std::string message);
85
91 static void info(std::string message);
92
98 static void warning(std::string message);
99
107 static void error(std::string message);
108
114 static void flush();
115
121};
122
123}
124
125#undef DIMENCOSR_API
Class with static logging functionality.
Definition: logging.h:38
static void initializeCrashCallBack()
static void flush()
Flushes the log.
static void error(std::string message)
Logs an error message.
static void debugInfo(std::string message)
Logs an informative message if the compiled in debug mode.
static void initializeToFile(Verbosity verbosity, std::string logPath, std::string logFilePrefix)
Initialize underlying logging implementation (GLog) with file logging only.
static void warning(std::string message)
Logs an warning message.
static void info(std::string message)
Logs an informative message.
static void initialize(Verbosity verbosity, std::string logPath, std::string logFilePrefix)
Initialize underlying logging implementation (GLog), logs both to file and console.
#define DIMENCOSR_API
Definition: logging.h:16
Namespace containing all C++ Simulated Reality classes.
Definition: srconfiguration.h:20
Verbosity
Verbosity level enumeration.
Definition: logging.h:24
@ HighVerbosity
Definition: logging.h:25
@ LowVerbosity
Definition: logging.h:27
@ NoLogging
Definition: logging.h:28
@ MediumVerbosity
Definition: logging.h:26