Example #1
0
 /// <summary>
 ///   write the Method Name into the log
 /// </summary>
 /// <param name = "method"></param>
 public static void LeaveMethod(CallingMethod method)
 {
     log.Debug("<<< {0}", method.MethodNameFull);
 }
Example #2
0
 /// <summary>
 ///   write the Method Name into the log
 /// </summary>
 /// <param name = "method"></param>
 public static void EnterMethod(CallingMethod method)
 {
     log.Debug(">>> {0}", method.MethodNameFull);
 }