Add very basic Logger implementation

This commit is contained in:
karl 2021-03-16 15:09:30 +01:00
parent 081063be69
commit 2c00b9b2e0
2 changed files with 11 additions and 0 deletions

View File

@ -0,0 +1,6 @@
#include "Logger.h"
#include <iostream>
void Logger::debug(const String &text) {
std::cout << "Debug: " << text << std::endl;
}

View File

@ -0,0 +1,5 @@
#include "String.h"
class Logger {
static void debug(const String &text);
};