summaryrefslogtreecommitdiff
path: root/Runtime/Debug/Log.h
blob: d66f705ae3306f960fca245caea087f2a2efce92 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#pragma  once 
#include <string>

//enum LogTag : unsigned long
//{
//
//	All = ~0
//};
//
//extern long g_LogTags;

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);