mirror of
https://gitea.tendokyu.moe/beerpsi/sinmai-mods.git
synced 2024-11-23 23:31:02 +01:00
18 lines
452 B
C#
18 lines
452 B
C#
using BepInEx.Logging;
|
|
|
|
namespace UnlockFrameRate;
|
|
|
|
internal static class ManualLogSourceExtensions
|
|
{
|
|
public static void LogInfo(this ManualLogSource logger, string format, params object[] args)
|
|
{
|
|
logger.LogInfo(string.Format(format, args));
|
|
}
|
|
|
|
public static void LogDebug(this ManualLogSource logger, string format, params object[] args)
|
|
{
|
|
logger.LogDebug(string.Format(format, args));
|
|
}
|
|
}
|
|
|