Skip to content

Commit

Permalink
PP-12-changed RequestResponseLoggingMiddleware to public
Browse files Browse the repository at this point in the history
  • Loading branch information
sreejankumar committed Feb 17, 2021
1 parent 4d773f0 commit 39976ab
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/libs/Logging/Configuration/NetworkLogConfiguration.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public class NetworkLogConfiguration
/// </summary>
public string NetworkLogAddress { get; set; }
/// <summary>
/// Network Log Source : AWS-Staging, AWS-London, AWS-Boston
/// Network Log Source : AWS/Azure/Data Centre
/// </summary>
public string NetworkLogSource { get; set; }
/// <summary>
Expand Down
4 changes: 2 additions & 2 deletions src/libs/Logging/Logging.csproj.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
<metadata>
<id>SK.Logging</id>
<version>1.0.1</version>
<version>1.0.2</version>
<authors>Sreejan Kumar</authors>
<owners>Sreejan Kumar</owners>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<license type="expression">MIT</license>
<description>Logging abstraction with NLog, by taking network and email configuration by Options </description>
<releaseNotes>Newtonsoft JSON package update</releaseNotes>
<releaseNotes>Fix for RequestResponseLoggingMiddleware</releaseNotes>
<copyright>Copyright 2021</copyright>
<tags>SK.Logging</tags>
<projectUrl>https://github.com/sreejankumar/Logging</projectUrl>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ public abstract class RequestResponseLoggingMiddleware
private readonly RequestDelegate _next;
private readonly Logger _logger;

protected RequestResponseLoggingMiddleware(RequestDelegate next)
public RequestResponseLoggingMiddleware(RequestDelegate next)
{
_next = next;
_logger = LogManager.GetCurrentClassLogger();
Expand Down

0 comments on commit 39976ab

Please sign in to comment.