2020-06-13 10:56:20 +02:00
|
|
|
#ifndef VENO_LOGGER_H
|
|
|
|
#define VENO_LOGGER_H
|
|
|
|
|
|
|
|
#include <iostream>
|
|
|
|
|
2020-06-13 16:52:16 +02:00
|
|
|
namespace VeNo
|
|
|
|
{
|
|
|
|
class Logger
|
|
|
|
{
|
2020-06-13 10:56:20 +02:00
|
|
|
public:
|
2020-06-13 16:52:16 +02:00
|
|
|
static void debugMessage (const std::string& message);
|
|
|
|
static void infoDebugMessage (const std::string& message);
|
2020-06-13 10:56:20 +02:00
|
|
|
};
|
|
|
|
}
|
|
|
|
#endif //VENO_LOGGER_H
|