All checks were successful
Linux arm64 / Build (push) Successful in 4m59s
C'est très long Co-authored-by: Morph01 <thibaut6969delastreet@gmail.com> Reviewed-on: #43 Co-authored-by: Persson-dev <sim16.prib@gmail.com> Co-committed-by: Persson-dev <sim16.prib@gmail.com>
33 lines
546 B
C++
33 lines
546 B
C++
#pragma once
|
|
|
|
/**
|
|
* \file Log.h
|
|
* \brief File defining log functions
|
|
*/
|
|
|
|
#include <string>
|
|
|
|
namespace blitz {
|
|
namespace utils {
|
|
|
|
/**
|
|
* \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 utils
|
|
} // namespace blitz
|