1 Star 0 Fork 0

starlove/kbengine_unity3d_plugins

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
Dbg.cs 1.48 KB
一键复制 编辑 原始数据 按行查看 历史
liquidx 提交于 2015-08-11 13:47 . up
using UnityEngine;
using KBEngine;
using System;
using System.Collections;
using System.Collections.Generic;
namespace KBEngine
{
public enum DEBUGLEVEL : int
{
DEBUG = 0,
INFO,
WARNING,
ERROR,
NOLOG, // 放在最后面,使用这个时表示不输出任何日志(!!!慎用!!!)
}
public class Dbg
{
static public DEBUGLEVEL debugLevel = DEBUGLEVEL.DEBUG;
#if UNITY_EDITOR
static Dictionary<string, Profile> _profiles = new Dictionary<string, Profile>();
#endif
public static string getHead()
{
return "[" + DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss fff") + "] ";
}
public static void INFO_MSG(object s)
{
if (DEBUGLEVEL.INFO >= debugLevel)
Debug.Log(getHead() + s);
}
public static void DEBUG_MSG(object s)
{
if (DEBUGLEVEL.DEBUG >= debugLevel)
Debug.Log(getHead() + s);
}
public static void WARNING_MSG(object s)
{
if (DEBUGLEVEL.WARNING >= debugLevel)
Debug.LogWarning(getHead() + s);
}
public static void ERROR_MSG(object s)
{
if (DEBUGLEVEL.ERROR >= debugLevel)
Debug.LogError(getHead() + s);
}
public static void profileStart(string name)
{
#if UNITY_EDITOR
Profile p = null;
if(!_profiles.TryGetValue(name, out p))
{
p = new Profile(name);
_profiles.Add(name, p);
}
p.start();
#endif
}
public static void profileEnd(string name)
{
#if UNITY_EDITOR
_profiles[name].end();
#endif
}
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/starlove/kbengine_unity3d_plugins.git
git@gitee.com:starlove/kbengine_unity3d_plugins.git
starlove
kbengine_unity3d_plugins
kbengine_unity3d_plugins
master

搜索帮助