2026-07-11 16:15:03 +08:00
|
|
|
namespace SimApi.Configurations;
|
|
|
|
|
|
|
|
|
|
public class SimApiRequestLogOptions
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 是否打印完整的请求Header
|
|
|
|
|
/// </summary>
|
|
|
|
|
public bool ShowFullHeader { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 是否打印完整的响应体
|
|
|
|
|
/// </summary>
|
|
|
|
|
public bool ShowFullResponse { get; set; }
|
2026-08-11 04:22:36 +08:00
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 请求字段显示最长长度
|
|
|
|
|
/// </summary>
|
|
|
|
|
public int RequestStringLogLength { get; set; } = 0;
|
|
|
|
|
}
|