31 lines
506 B
C++
31 lines
506 B
C++
#pragma once
|
|
|
|
/**
|
|
* \file Log.h
|
|
* \brief File defining log functions
|
|
*/
|
|
|
|
#include <string>
|
|
|
|
namespace blitz {
|
|
|
|
/**
|
|
* \brief Logs a normal message.
|
|
* \param msg The message to be logged.
|
|
*/
|
|
void Log(const std::string& msg);
|
|
|
|
/**
|
|
* \brief Logs a normal message in debug mode.
|
|
* \param msg The message to be logged.
|
|
*/
|
|
void LogD(const std::string& msg);
|
|
|
|
/**
|
|
* \brief Logs an error message.
|
|
* \param err The error message to be logged.
|
|
*/
|
|
void LogE(const std::string& err);
|
|
|
|
} // namespace blitz
|