Skip to content

Commit

Permalink
公开线程安全的日志写入接口
Browse files Browse the repository at this point in the history
  • Loading branch information
walterlv committed Feb 19, 2025
1 parent ecdd902 commit 1b203fe
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/dotnetCampus.Logger/Writers/Helpers/ICoreLogWriter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ namespace dotnetCampus.Logging.Writers.Helpers;
/// <summary>
/// 提供各种不同线程安全方式的最终日志写入功能。
/// </summary>
internal interface ICoreLogWriter
public interface ICoreLogWriter
{
/// <summary>
/// 写入日志。
Expand Down
2 changes: 1 addition & 1 deletion src/dotnetCampus.Logger/Writers/LogWritingThreadMode.cs
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public enum LogWritingThreadMode
/// <summary>
/// 包含 <see cref="LogWritingThreadMode"/> 的扩展方法。
/// </summary>
internal static class LogWritingThreadModeExtensions
public static class LogWritingThreadModeExtensions
{
/// <summary>
/// 根据 <see cref="LogWritingThreadMode"/> 创建对应的 <see cref="ICoreLogWriter"/> 实例。
Expand Down

0 comments on commit 1b203fe

Please sign in to comment.