Add very basic Logger implementation
This commit is contained in:
parent
081063be69
commit
2c00b9b2e0
@ -0,0 +1,6 @@
|
|||||||
|
#include "Logger.h"
|
||||||
|
#include <iostream>
|
||||||
|
|
||||||
|
void Logger::debug(const String &text) {
|
||||||
|
std::cout << "Debug: " << text << std::endl;
|
||||||
|
}
|
@ -0,0 +1,5 @@
|
|||||||
|
#include "String.h"
|
||||||
|
|
||||||
|
class Logger {
|
||||||
|
static void debug(const String &text);
|
||||||
|
};
|
Loading…
x
Reference in New Issue
Block a user