You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
jellyfin/MediaBrowser.Server.Impleme.../HttpServer/LoggerUtils.cs

23 lines
863 B

10 years ago
using MediaBrowser.Model.Logging;
using System;
9 years ago
using System.Globalization;
namespace MediaBrowser.Server.Implementations.HttpServer
{
public static class LoggerUtils
{
/// <summary>
/// Logs the response.
/// </summary>
/// <param name="logger">The logger.</param>
10 years ago
/// <param name="statusCode">The status code.</param>
/// <param name="url">The URL.</param>
/// <param name="endPoint">The end point.</param>
/// <param name="duration">The duration.</param>
10 years ago
public static void LogResponse(ILogger logger, int statusCode, string url, string endPoint, TimeSpan duration)
{
logger.Info("HTTP Response {0} to {1}. Time: {2}ms. {3}", statusCode, endPoint, Convert.ToInt32(duration.TotalMilliseconds).ToString(CultureInfo.InvariantCulture), url);
}
}
}