17 lines
216 B
C++
17 lines
216 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
|
|
#ifndef NDEBUG
|
|
#define LOGD LOG
|
|
#endif
|
|
|
|
namespace td {
|
|
namespace utils {
|
|
|
|
void LOG(const std::string& msg);
|
|
void LOGE(const std::string& err);
|
|
|
|
} // namespace utils
|
|
} // namespace td
|