Logger used in small3d.
More...
#include <iostream>
#include <ostream>
#include <memory>
Go to the source code of this file.
|
#define | LOGERROR(MESSAGE) logger->append(small3d::LogLevel::loggererror, MESSAGE) |
|
#define | LOGINFO(MESSAGE) logger->append(small3d::LogLevel::loggerinfo, MESSAGE) |
|
#define | LOGDEBUG(MESSAGE) logger->append(small3d::LogLevel::loggerdebug, MESSAGE) |
|
|
enum | small3d::LogLevel { loggerinfo,
loggerdebug,
loggererror
} |
| Possible logging levels.
|
|
Logger used in small3d.
Created on: 2014/10/18 Author: Dimitri Kourkoulis License: BSD 3-Clause License (see LICENSE file)
◆ LOGDEBUG
#define LOGDEBUG |
( |
|
MESSAGE | ) |
logger->append(small3d::LogLevel::loggerdebug, MESSAGE) |
Log debug information (only shows up when debugging)
◆ LOGERROR
#define LOGERROR |
( |
|
MESSAGE | ) |
logger->append(small3d::LogLevel::loggererror, MESSAGE) |
◆ LOGINFO
#define LOGINFO |
( |
|
MESSAGE | ) |
logger->append(small3d::LogLevel::loggerinfo, MESSAGE) |
Log information (shows up even when not debugging)