The mdf log stream file is intended to isolate the logging so the library can be built without dependency of the util and boost libraries. The applications in the library do however include the above libraries.
#include <sstream>
#include <string>
#include "mdf/mdffactory.h"
Go to the source code of this file.
|
struct | MdfLocation |
| This is a replacement for the std::source_location library. The standard source_location library cannot be used due to user requirement of C++ 17 version. More...
|
|
class | mdf::MdfLogStream |
| MDF log stream interface. More...
|
|
|
namespace | mdf |
| Main namespace for the MDF library.
|
|
◆ MDF_DEBUG
Value: MdfLogStream({__LINE__,0,__FILE__,__func__}, \
MdfLogSeverity::kDebug)
◆ MDF_ERROR
Value: MdfLogStream({__LINE__,0,__FILE__,__func__}, \
MdfLogSeverity::kError)
◆ MDF_INFO
Value: MdfLogStream({__LINE__,0,__FILE__,__func__}, \
MdfLogSeverity::kInfo)
◆ MDF_TRACE
Value: MdfLogStream({__LINE__,0,__FILE__,__func__}, \
MdfLogSeverity::kTrace)