chore(logging): 添加系统命名空间引用

- 在 AbstractLogger.cs 中添加 System 命名空间引用
- 在 ConsoleLogger.cs 中添加 System 和 System.IO 命名空间引用
- 统一日志模块的命名空间导入规范
This commit is contained in:
GeWuYou 2026-01-20 07:55:06 +08:00
parent 0a924725a5
commit c2b046e185
2 changed files with 4 additions and 1 deletions

View File

@ -1,4 +1,5 @@
using GFramework.Core.Abstractions.logging;
using System;
using GFramework.Core.Abstractions.logging;
namespace GFramework.Core.logging;

View File

@ -1,3 +1,5 @@
using System;
using System.IO;
using GFramework.Core.Abstractions.logging;
namespace GFramework.Core.logging;