update// added filesystem and reformated addressbook
This commit is contained in:
18
src/Logger/LogDebug.h
Normal file
18
src/Logger/LogDebug.h
Normal file
@@ -0,0 +1,18 @@
|
||||
#ifndef LOGDEBUG_H
|
||||
#define LOGDEBUG_H
|
||||
|
||||
#include "LogType.h"
|
||||
#include "LogStrategy.h"
|
||||
#include "LogWriter.h"
|
||||
|
||||
class LogDebug : public LogStrategy
|
||||
{
|
||||
public:
|
||||
void log(std::string message)
|
||||
{
|
||||
LogWriter* lw = LogWriter::getInstance();
|
||||
lw->write(LogType::DEBUG, message);
|
||||
}
|
||||
};
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user