summaryrefslogtreecommitdiff
path: root/Runtime/Debug/Log.h
diff options
context:
space:
mode:
authorchai <chaifix@163.com>2021-10-18 21:02:31 +0800
committerchai <chaifix@163.com>2021-10-18 21:02:31 +0800
commit83474a5ec3a25da9f66192f03f9b0628ad219404 (patch)
tree3aa95792cb987b07cecee6a2fb15fc636c902207 /Runtime/Debug/Log.h
parent45328cbadd8a946c19a77301f218efbf650e2f28 (diff)
*gitignore
Diffstat (limited to 'Runtime/Debug/Log.h')
-rw-r--r--Runtime/Debug/Log.h22
1 files changed, 22 insertions, 0 deletions
diff --git a/Runtime/Debug/Log.h b/Runtime/Debug/Log.h
new file mode 100644
index 0000000..d66f705
--- /dev/null
+++ b/Runtime/Debug/Log.h
@@ -0,0 +1,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);