This commit is contained in:
CortexCore
2024-03-05 15:27:29 +08:00
parent 7766082e9d
commit 2c8dfd3c86
45 changed files with 6760 additions and 138 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}");
}
}
}