Skip to content
Snippets Groups Projects
Commit ea31e4fc authored by Alfred Burgess's avatar Alfred Burgess
Browse files

Created generics for ECS structure

parent 385d1204
No related merge requests found
......@@ -17,7 +17,7 @@ void Logger::fatal( const std::string& message ) { this->log( LogLevel::FATAL, m
Logger::Logger()
: currentLogLevel( LogLevel::INFO )
{ this->info("New Logger instance created"); }
Logger::~Logger(){}
Logger::~Logger(){ this->info( "Closing Logger System" ); }
void Logger::log(LogLevel level, const std::string& message)
{
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment