Eliya/src/Utils/Logging.h

22 lines
345 B
C++

//
// Created by versustune on 22.02.20.
//
#pragma once
#ifndef ELIYA_LOGGING_H
#define ELIYA_LOGGING_H
#include <string>
class Logging {
public:
static void error(std::basic_string<char> error, std::basic_string<char> module) noexcept;
static void log(const char* log, const char* module) noexcept;
};
#endif //ELIYA_LOGGING_H