This commit is contained in:
CortexCore
2024-03-31 23:31:00 +08:00
parent e179d2eb53
commit b7b89ee71a
641 changed files with 31286 additions and 22134 deletions

View File

@@ -45,7 +45,7 @@ namespace BITKit
#if NET5_0_OR_GREATER
Log($"[{DateTime.Now}]{typeof(T).Name}:{x}");
#else
Log($"{typeof(T).Name}:{x}");
Log($"<color=#add8e6ff><b>{typeof(T).Name}</b></color>:{x}");
#endif
currentType = typeof(T);
@@ -69,7 +69,7 @@ namespace BITKit
#endif
public static void Warning<T>(object x)
{
Warning($"{typeof(T).Name}:{x}");
Warning($"<color=#ffa500ff><b>{typeof(T).Name}</b></color>:{x}");
}
}
}