-
Notifications
You must be signed in to change notification settings - Fork 472
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update PublicAPI with Castle.Services.Logging.EventlogIntegration
- Loading branch information
Showing
8 changed files
with
92 additions
and
72 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
[assembly: System.Reflection.AssemblyMetadata("RepositoryUrl", "https://github.com/castleproject/Core")] | ||
[assembly: System.Runtime.Versioning.TargetFramework(".NETFramework,Version=v4.6.2", FrameworkDisplayName=".NET Framework 4.6.2")] | ||
namespace Castle.Core.Logging | ||
{ | ||
[System.Serializable] | ||
public class DiagnosticsLogger : Castle.Core.Logging.LevelFilteredLogger, System.IDisposable | ||
{ | ||
public DiagnosticsLogger(string logName) { } | ||
public DiagnosticsLogger(string logName, string source) { } | ||
public DiagnosticsLogger(string logName, string machineName, string source) { } | ||
public override Castle.Core.Logging.ILogger CreateChildLogger(string loggerName) { } | ||
public void Dispose() { } | ||
protected virtual void Dispose(bool disposing) { } | ||
protected override void Finalize() { } | ||
protected override void Log(Castle.Core.Logging.LoggerLevel loggerLevel, string loggerName, string message, System.Exception exception) { } | ||
} | ||
[System.Serializable] | ||
public class DiagnosticsLoggerFactory : Castle.Core.Logging.AbstractLoggerFactory | ||
{ | ||
public DiagnosticsLoggerFactory() { } | ||
public override Castle.Core.Logging.ILogger Create(string name) { } | ||
public override Castle.Core.Logging.ILogger Create(string name, Castle.Core.Logging.LoggerLevel level) { } | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
[assembly: System.Reflection.AssemblyMetadata("RepositoryUrl", "https://github.com/castleproject/Core")] | ||
[assembly: System.Runtime.Versioning.TargetFramework(".NETCoreApp,Version=v6.0", FrameworkDisplayName=".NET 6.0")] | ||
namespace Castle.Core.Logging | ||
{ | ||
[System.Runtime.Versioning.SupportedOSPlatform("windows")] | ||
public class DiagnosticsLogger : Castle.Core.Logging.LevelFilteredLogger, System.IDisposable | ||
{ | ||
public DiagnosticsLogger(string logName) { } | ||
public DiagnosticsLogger(string logName, string source) { } | ||
public DiagnosticsLogger(string logName, string machineName, string source) { } | ||
public override Castle.Core.Logging.ILogger CreateChildLogger(string loggerName) { } | ||
public void Dispose() { } | ||
protected virtual void Dispose(bool disposing) { } | ||
protected override void Finalize() { } | ||
protected override void Log(Castle.Core.Logging.LoggerLevel loggerLevel, string loggerName, string message, System.Exception exception) { } | ||
} | ||
[System.Runtime.Versioning.SupportedOSPlatform("windows")] | ||
public class DiagnosticsLoggerFactory : Castle.Core.Logging.AbstractLoggerFactory | ||
{ | ||
public DiagnosticsLoggerFactory() { } | ||
public override Castle.Core.Logging.ILogger Create(string name) { } | ||
public override Castle.Core.Logging.ILogger Create(string name, Castle.Core.Logging.LoggerLevel level) { } | ||
} | ||
} |
22 changes: 22 additions & 0 deletions
22
ref/Castle.Services.Logging.EventlogIntegration-netstandard2.0.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
[assembly: System.Reflection.AssemblyMetadata("RepositoryUrl", "https://github.com/castleproject/Core")] | ||
[assembly: System.Runtime.Versioning.TargetFramework(".NETStandard,Version=v2.0", FrameworkDisplayName=".NET Standard 2.0")] | ||
namespace Castle.Core.Logging | ||
{ | ||
public class DiagnosticsLogger : Castle.Core.Logging.LevelFilteredLogger, System.IDisposable | ||
{ | ||
public DiagnosticsLogger(string logName) { } | ||
public DiagnosticsLogger(string logName, string source) { } | ||
public DiagnosticsLogger(string logName, string machineName, string source) { } | ||
public override Castle.Core.Logging.ILogger CreateChildLogger(string loggerName) { } | ||
public void Dispose() { } | ||
protected virtual void Dispose(bool disposing) { } | ||
protected override void Finalize() { } | ||
protected override void Log(Castle.Core.Logging.LoggerLevel loggerLevel, string loggerName, string message, System.Exception exception) { } | ||
} | ||
public class DiagnosticsLoggerFactory : Castle.Core.Logging.AbstractLoggerFactory | ||
{ | ||
public DiagnosticsLoggerFactory() { } | ||
public override Castle.Core.Logging.ILogger Create(string name) { } | ||
public override Castle.Core.Logging.ILogger Create(string name, Castle.Core.Logging.LoggerLevel level) { } | ||
} | ||
} |
22 changes: 22 additions & 0 deletions
22
ref/Castle.Services.Logging.EventlogIntegration-netstandard2.1.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
[assembly: System.Reflection.AssemblyMetadata("RepositoryUrl", "https://github.com/castleproject/Core")] | ||
[assembly: System.Runtime.Versioning.TargetFramework(".NETStandard,Version=v2.1", FrameworkDisplayName=".NET Standard 2.1")] | ||
namespace Castle.Core.Logging | ||
{ | ||
public class DiagnosticsLogger : Castle.Core.Logging.LevelFilteredLogger, System.IDisposable | ||
{ | ||
public DiagnosticsLogger(string logName) { } | ||
public DiagnosticsLogger(string logName, string source) { } | ||
public DiagnosticsLogger(string logName, string machineName, string source) { } | ||
public override Castle.Core.Logging.ILogger CreateChildLogger(string loggerName) { } | ||
public void Dispose() { } | ||
protected virtual void Dispose(bool disposing) { } | ||
protected override void Finalize() { } | ||
protected override void Log(Castle.Core.Logging.LoggerLevel loggerLevel, string loggerName, string message, System.Exception exception) { } | ||
} | ||
public class DiagnosticsLoggerFactory : Castle.Core.Logging.AbstractLoggerFactory | ||
{ | ||
public DiagnosticsLoggerFactory() { } | ||
public override Castle.Core.Logging.ILogger Create(string name) { } | ||
public override Castle.Core.Logging.ILogger Create(string name, Castle.Core.Logging.LoggerLevel level) { } | ||
} | ||
} |