当前位置:
首页 > Python基础教程 >
-
Unity实现简易日志输出功能
在使用Unity中的Debug.Log()进行日志输出时很不方便,在打包出来的可执行文件中没有办法看到输出,所有就想自己实现一个简易的日志输出功能,可以输出到日志文件,因为能力实在是不够,所以有错误和不合理的地方,还请各位老师指点一下,谢谢啦
1.日志记录器接口
1
2
3
4
|
public interface ILogger { void Log( string condition, string stackTrace, UnityEngine.LogType type); } |
2.日志文件记录器
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
using System; using UnityEngine; using System.IO; public class FileLogger : ILogger { private readonly string path; /// <summary> /// 构造方法 /// </summary> /// <param name="isClear">是否清空原有的日志</param> public FileLogger( bool isClear = false ) { switch (Application.platform) { case RuntimePlatform.Android: path = Path.Combine( Application.persistentDataPath, "log.txt" ); break ; case RuntimePlatform.WindowsPlayer: path = Path.Combine(Application.dataPath, "log.txt" ); break ; case RuntimePlatform.WindowsEditor: path = Path.Combine(Application.dataPath, "log.txt" ); break ; case RuntimePlatform.IPhonePlayer: path = Path.Combine(Application.persistentDataPath, "log.txt" ); break ; case RuntimePlatform.OSXEditor: break ; default : break ; } if (isClear) { if (File.Exists(path)) { File.Delete(path); } } } public void Log( string condition, string stackTrace, LogType type) { using (StreamWriter sw = new StreamWriter(path, true , System.Text.Encoding.UTF8)) { string msg = string .Format( "[{0}] {1}: {2}\n{3}" , GetNowTime(), type, condition, stackTrace); sw.WriteLine(msg); } } #region Tool Method private string GetNowTime() { return DateTime.Now.ToString( "yyyy/MM/dd HH:mm:ss" ); } #endregion } |
3.日志系统管理类
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
using System; using UnityEngine; public class LogSys { private static ILogger logger; public static ILogger Logger { get { return logger; } } public bool IsOpen { get { return Debug.unityLogger.logEnabled; } } private LogSys() { } /// <summary> /// 初始化 /// </summary> /// <param name="_logger">日志输出器</param> /// <param name="isOpen">是否开启日志输出</param> public static void Init(ILogger _logger, bool isOpen = true ) { Init(isOpen); logger = _logger; Enable(); } public static void Init( bool isOpen = true ) { Debug.unityLogger.logEnabled = isOpen; } /// <summary> /// 过滤器 /// </summary> /// <param name="logType">需要显示的日志类型</param> public static void Filter(LogType logType = LogType.Log) { Debug.unityLogger.filterLogType = logType; } public static void Enable() { if (logger != null ) { Application.logMessageReceived += logger.Log; } } public static void Disable() { if (logger != null ) { Application.logMessageReceived -= logger.Log; } } } |
4.测试
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
using System; using System.Collections; using System.Collections.Generic; using System.IO; using UnityEngine; using UnityEngine.UI; public class Test : MonoBehaviour { public Text logText; void Awake() { LogSys.Init( new FileLogger()); } void Update() { if (Input.GetKeyDown(KeyCode.Q)) { Debug.Log( "My name is Blinkedu." ); } if (Input.GetKeyDown(KeyCode.W)) { Debug.LogWarning( "My name is Blinkedu." ); } if (Input.GetKeyDown(KeyCode.E)) { Debug.LogError( "My name is Blinkedu." ); } } private void OnDestroy() { LogSys.Disable(); } } |
栏目列表
最新更新
nodejs爬虫
Python正则表达式完全指南
爬取豆瓣Top250图书数据
shp 地图文件批量添加字段
爬虫小试牛刀(爬取学校通知公告)
【python基础】函数-初识函数
【python基础】函数-返回值
HTTP请求:requests模块基础使用必知必会
Python初学者友好丨详解参数传递类型
如何有效管理爬虫流量?
SQL SERVER中递归
2个场景实例讲解GaussDB(DWS)基表统计信息估
常用的 SQL Server 关键字及其含义
动手分析SQL Server中的事务中使用的锁
openGauss内核分析:SQL by pass & 经典执行
一招教你如何高效批量导入与更新数据
天天写SQL,这些神奇的特性你知道吗?
openGauss内核分析:执行计划生成
[IM002]Navicat ODBC驱动器管理器 未发现数据
初入Sql Server 之 存储过程的简单使用
这是目前我见过最好的跨域解决方案!
减少回流与重绘
减少回流与重绘
如何使用KrpanoToolJS在浏览器切图
performance.now() 与 Date.now() 对比
一款纯 JS 实现的轻量化图片编辑器
关于开发 VS Code 插件遇到的 workbench.scm.
前端设计模式——观察者模式
前端设计模式——中介者模式
创建型-原型模式