You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
55 lines
1.6 KiB
C#
55 lines
1.6 KiB
C#
using Microsoft.AspNetCore.Builder;
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
using Microsoft.Extensions.Hosting;
|
|
using Microsoft.Extensions.Logging;
|
|
using Microsoft.Extensions.Logging.Console;
|
|
using System;
|
|
|
|
namespace Myshipping.Core;
|
|
|
|
/// <summary>
|
|
/// 日志写入文件扩展
|
|
/// </summary>
|
|
public static class LoggingFileExtensions
|
|
{
|
|
/// <summary>
|
|
/// 添加workerservice项目控制台日志格式化扩展
|
|
/// </summary>
|
|
/// <param name="builder"></param>
|
|
/// <returns></returns>
|
|
public static IHostBuilder UseLoggingFile(this IHostBuilder builder)
|
|
{
|
|
builder.ConfigureLogging(logging =>
|
|
{
|
|
logging.ClearProviders();
|
|
logging.AddConsole(options =>
|
|
{
|
|
options.FormatterName = "custom_format";
|
|
}).AddConsoleFormatter<ConsoleForamt, ConsoleFormatterOptions>();
|
|
|
|
});
|
|
builder.ConfigureServices((hostContext, services) =>
|
|
{
|
|
services.AddComponent<LoggingFileComponent>();
|
|
});
|
|
return builder;
|
|
}
|
|
|
|
|
|
/// <summary>
|
|
/// 添加api项目控制台日志格式化扩展
|
|
/// </summary>
|
|
/// <param name="builder"></param>
|
|
/// <returns></returns>
|
|
public static WebApplicationBuilder UseLoggingFile(this WebApplicationBuilder builder)
|
|
{
|
|
builder.Logging.ClearProviders();
|
|
//builder.Logging.AddConsole(options =>
|
|
//{
|
|
// options.FormatterName = "custom_format";
|
|
//}).AddConsoleFormatter<ConsoleForamt, ConsoleFormatterOptions>();
|
|
builder.Services.AddComponent<LoggingFileComponent>();
|
|
return builder;
|
|
}
|
|
}
|