summaryrefslogtreecommitdiff
path: root/Runtime/Debug/Log.h
blob: aaaaa78952cf682a31bfe4a08f52725ce61c08d9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#pragma  once 
#include <string>

void log_open_tag(std::string tag);

void log_info(std::string log);
void log_warning(std::string log);
void log_error(std::string log);

void log_error_null_param(std::string funcName, std::string param);

void log_info(std::string tag, std::string log);
void log_warning(std::string tag, std::string log);
void log_error(std::string tag, std::string log);