9 lines
207 B
C#
9 lines
207 B
C#
using log4net;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
|
|
namespace API.Controllers;
|
|
|
|
public abstract class ApiController(Type type) : Controller
|
|
{
|
|
protected ILog Log { get; init; } = LogManager.GetLogger(type);
|
|
} |