MethodTimeLogger.cs 301 B

123456789101112
  1. using System.Reflection;
  2. namespace Team.Utility
  3. {
  4. public static class MethodTimeLogger
  5. {
  6. public static void Log(MethodBase methodBase, long milliseconds, string message)
  7. {
  8. LogUtil.WriteInfo($"执行{methodBase.Name},时间:{milliseconds}ms");
  9. }
  10. }
  11. }