summaryrefslogtreecommitdiff
path: root/Editor/Utils/Log.h
diff options
context:
space:
mode:
authorchai <chaifix@163.com>2021-10-17 11:14:00 +0800
committerchai <chaifix@163.com>2021-10-17 11:14:00 +0800
commitd35db57d457132dd9d83fa2bd51491b148530655 (patch)
treeb5a29675f091f268577b5991988c723f273b0bd1 /Editor/Utils/Log.h
parent7b0a6d1fe0117cf42a5776aaabda2db78599e5b8 (diff)
*GUI
Diffstat (limited to 'Editor/Utils/Log.h')
-rw-r--r--Editor/Utils/Log.h22
1 files changed, 22 insertions, 0 deletions
diff --git a/Editor/Utils/Log.h b/Editor/Utils/Log.h
new file mode 100644
index 0000000..d66f705
--- /dev/null
+++ b/Editor/Utils/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);