master
Harald Wolff 2019-04-01 07:48:24 +02:00
parent 54f466c363
commit 0b186370be
1 changed files with 2 additions and 2 deletions

View File

@ -73,7 +73,7 @@ namespace ln.http.resources
object result = methodInfo.Invoke(this, arguments);
stopwatch.Stop();
Logging.Log(LogLevel.DEBUG,"InvokeMethodCall({0},...): {1}ms",methodName,stopwatch.ElapsedMilliseconds);
Logging.Log(LogLevel.DEBUGDETAIL,"InvokeMethodCall({0},...): {1}ms",methodName,stopwatch.ElapsedMilliseconds);
return result;
}
@ -98,7 +98,7 @@ namespace ln.http.resources
stopwatch.Stop();
Logging.Log(LogLevel.DEBUG, "InvokeMethodCall({0},...): {1}ms", methodName, stopwatch.ElapsedMilliseconds);
Logging.Log(LogLevel.DEBUGDETAIL, "InvokeMethodCall({0},...): {1}ms", methodName, stopwatch.ElapsedMilliseconds);
return result;
}