OptimusLog.AppService.Domain 2.0.1

dotnet add package OptimusLog.AppService.Domain --version 2.0.1
                    
NuGet\Install-Package OptimusLog.AppService.Domain -Version 2.0.1
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="OptimusLog.AppService.Domain" Version="2.0.1" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="OptimusLog.AppService.Domain" Version="2.0.1" />
                    
Directory.Packages.props
<PackageReference Include="OptimusLog.AppService.Domain" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add OptimusLog.AppService.Domain --version 2.0.1
                    
#r "nuget: OptimusLog.AppService.Domain, 2.0.1"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package OptimusLog.AppService.Domain@2.0.1
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=OptimusLog.AppService.Domain&version=2.0.1
                    
Install as a Cake Addin
#tool nuget:?package=OptimusLog.AppService.Domain&version=2.0.1
                    
Install as a Cake Tool

OptimusLog.AppService.Domain

Application service domain interfaces for the Optimus Log module. Defines the business logic contracts for API logging, log querying, and logging configuration.

Features

  • Log Service Interface: IServiceApiLog for adding and retrieving API logs
  • Log List Service: IServiceApiLogList extending IServiceListable for paginated log queries with type/group metadata
  • Setting Service: IServiceApiLogSetting to check if API logging is globally enabled

Key Interfaces

Interface Description
IServiceApiLog AddRange(ApiLogDto[]) for batch logging, Get(long id) for retrieval
IServiceApiLogList Paginated listing with GetTypes() and GetGroups() metadata
IServiceApiLogSetting IsApiLogEnabled() to check global logging state

Installation

dotnet add package OptimusLog.AppService.Domain

Usage

using OptimusLog.AppService.Domain;

public class MyMiddleware
{
    private readonly IServiceApiLog _logService;
    private readonly IServiceApiLogSetting _settingService;

    public async Task ProcessAsync(ApiLogDto log)
    {
        if (await _settingService.IsApiLogEnabled())
        {
            _logService.AddRange(log);
        }
    }
}
Product Compatible and additional computed target framework versions.
.NET net10.0 is compatible.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (2)

Showing the top 2 NuGet packages that depend on OptimusLog.AppService.Domain:

Package Downloads
OptimusLog.Api

Package Description

OptimusLog.AppService

Package Description

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
2.0.1 124 2/18/2026
2.0.0 120 2/18/2026