Files
SilentDragonXLite/src/Logger/test.cpp
onryo 16b6d43786 Revert the merge revert
This reverts commit 3c2414028b.
2024-01-06 18:21:41 +01:00

17 lines
435 B
C++

// Copyright 2019-2024 The Hush developers
// Released under the GPLv3
#include "SimpleLogger.h"
int main(int argc, char** argv)
{
SimpleLogger sl = SimpleLogger("/tmp/simplelog.log");
sl.logInfo("test info");
sl.logDebug("test debug");
sl.logSuccess("test success");
sl.logWarning("test warning");
sl.logError("test error");
sl.logFatal("test fatal");
sl.logCritical("test critical");
return 0;
}