gedeng/cpp/Logger.cpp

7 lines
133 B
C++

#include "Logger.h"
#include <iostream>
void Logger::debug(const String &text) {
std::cout << "Debug: " << text << std::endl;
}