Serialbox  2.2.0
Data serialization library and tools for C/C++, Python and Fortran
Logging.cpp
1 /*===-- serialbox-c/Logging.cpp -----------------------------------------------------*- C++ -*-===*\
2  *
3  * S E R I A L B O X
4  *
5  * This file is distributed under terms of BSD license.
6  * See LICENSE.txt for more information
7  *
8  *===------------------------------------------------------------------------------------------===//
9  *
10  *! \file
11  *! This file contains the C implementation of the Logger.
12  *
13 \*===------------------------------------------------------------------------------------------===*/
14 
15 #include "serialbox-c/Logging.h"
16 #include "serialbox/core/Logging.h"
17 
19 
21 
void serialboxLoggingDisable(void)
Disable logging.
Definition: Logging.cpp:20
static void enable() noexcept
Disable logging.
Definition: Logging.h:81
void serialboxLoggingEnable(void)
Enable logging.
Definition: Logging.cpp:18
static bool isEnabled() noexcept
Return true if logging is eneabled.
Definition: Logging.h:87
int serialboxLoggingIsEnabled(void)
Check if logging is enabled.
Definition: Logging.cpp:22
static void disable() noexcept
Enable logging.
Definition: Logging.h:84