#include <filesystem>
#include <iostream>
#include <sstream>
#include <fstream>
#include <cassert>
#include <cstdlib>
#include <string>
#include <limits>
#include <regex>
#include <map>
Go to the source code of this file.
|
|
#define | CLUTCHLOG_HAVE_UNIX_SYSINFO 0 |
| |
|
#define | WITH_CLUTCHLOG |
| |
|
#define | CLUTCHLOG_DEFAULT_FORMAT "{level_letter} {msg}\t\t\t\t\t{func} @ {file}:{line}\n" |
| | Default format of the messages.
|
| |
|
#define | CLUTCHDUMP_DEFAULT_FORMAT "# {level} in {func} @ {file}:{line}" |
| | Default format of the comment line in file dump.
|
| |
|
#define | CLUTCHDUMP_DEFAULT_SEP "\n" |
| | Default item separator for dump.
|
| |
|
#define | CLUTCHLOG_DEFAULT_DEPTH_MARK ">" |
| |
|
#define | CLUTCHLOG_DEFAULT_DEPTH_BUILT_NODEBUG clutchlog::level::progress |
| |
|
#define | CLUTCHLOC __FILE__, __FUNCTION__, __LINE__ |
| | Handy shortcuts to location.
|
| |
| #define | CLUTCHLOG(LEVEL, WHAT) |
| | Log a message at the given level. More...
|
| |
| #define | CLUTCHDUMP(LEVEL, CONTAINER, FILENAME) |
| | Dump the given container. More...
|
| |