7 lines
133 B
C++
7 lines
133 B
C++
#include "Logger.h"
|
|
#include <iostream>
|
|
|
|
void Logger::debug(const String &text) {
|
|
std::cout << "Debug: " << text << std::endl;
|
|
}
|