Akka.Logger.NLog
1.5.60
Prefix Reserved
dotnet add package Akka.Logger.NLog --version 1.5.60
NuGet\Install-Package Akka.Logger.NLog -Version 1.5.60
<PackageReference Include="Akka.Logger.NLog" Version="1.5.60" />
<PackageVersion Include="Akka.Logger.NLog" Version="1.5.60" />
<PackageReference Include="Akka.Logger.NLog" />
paket add Akka.Logger.NLog --version 1.5.60
#r "nuget: Akka.Logger.NLog, 1.5.60"
#:package Akka.Logger.NLog@1.5.60
#addin nuget:?package=Akka.Logger.NLog&version=1.5.60
#tool nuget:?package=Akka.Logger.NLog&version=1.5.60
Akka.Logger.NLog
This is the NLog integration plugin for Akka.NET.
Configuration
Configuration via code
// Step 1. Create configuration object
var config = new NLog.Config.LoggingConfiguration();
// Step 2. Create targets and configure properties
var logconsole = new NLog.Targets.ConsoleTarget("logconsole");
logconsole.Layout = @"${date:format=HH\:mm\:ss} ${level} ${logger} ${message}";
// Step 3. Define filtering rules
config.AddRule(LogLevel.Debug, LogLevel.Fatal, logconsole);
// Step 4. Activate the configuration
NLog.LogManager.Configuration = config;
Config myConfig = @"akka.loglevel = DEBUG
akka.loggers=[""Akka.Logger.NLog.NLogLogger, Akka.Logger.NLog""]";
var system = ActorSystem.Create("my-test-system", myConfig);
Configuration via NLog.config file
Add NLog.config file to your project
<?xml version="1.0" encoding="utf-8" ?>
<nlog xmlns="http://www.nlog-project.org/schemas/NLog.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<targets>
<target name="console" xsi:type="Console" layout="[${logger}] [${level:uppercase=true}] [${event-properties:item=logSource}] [${event-properties:item=actorPath}] [${event-properties:item=threadId:format=D4}] : ${message}"/>
</targets>
<rules>
<logger name="*" minlevel="Debug" writeTo="console"/>
</rules>
</nlog>
Change your *.csproj file with this content
<ItemGroup>
<None Include="NLog.config">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
Change your Akka.NET configuration
Config myConfig = @"akka.loglevel = DEBUG
akka.loggers=[""Akka.Logger.NLog.NLogLogger, Akka.Logger.NLog""]";
var system = ActorSystem.Create("my-test-system", myConfig);
Maintainer
- Akka.NET Team
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 was computed. 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. |
| .NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
| .NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
| .NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
| MonoAndroid | monoandroid was computed. |
| MonoMac | monomac was computed. |
| MonoTouch | monotouch was computed. |
| Tizen | tizen40 was computed. tizen60 was computed. |
| Xamarin.iOS | xamarinios was computed. |
| Xamarin.Mac | xamarinmac was computed. |
| Xamarin.TVOS | xamarintvos was computed. |
| Xamarin.WatchOS | xamarinwatchos was computed. |
NuGet packages (15)
Showing the top 5 NuGet packages that depend on Akka.Logger.NLog:
| Package | Downloads |
|---|---|
|
Akka.NLog
DEPRECATED. Use Akka.Logger.NLog instead. If you're upgrading from a previous version, this package contains instructions on how to upgrade to Akka.Logger.NLog. |
|
|
Intent.Esb.Server
Intent Esb Server Library |
|
|
AkkaSim
DES Simulation implementation, with pesimistic central clock |
|
|
FAkka.Shared
Package Description |
|
|
FAkka.Server
Package Description |
GitHub repositories (1)
Showing the top 1 popular GitHub repositories that depend on Akka.Logger.NLog:
| Repository | Stars |
|---|---|
|
superquanter/quanter
从原来的StockTrader迁移过来
|
| Version | Downloads | Last Updated |
|---|---|---|
| 1.5.60 | 189 | 2/10/2026 |
| 1.5.59 | 768 | 1/27/2026 |
| 1.5.57-beta2 | 389 | 12/4/2025 |
| 1.5.41 | 22,554 | 5/15/2025 |
| 1.5.13 | 205,524 | 9/27/2023 |
| 1.5.0 | 44,819 | 3/6/2023 |
| 1.4.10 | 283,156 | 10/29/2020 |
| 1.4.5 | 39,236 | 5/4/2020 |
| 1.3.5 | 38,166 | 1/28/2020 |
| 1.3.4 | 6,100 | 1/12/2020 |
| 1.3.3 | 154,296 | 8/1/2018 |
| 1.3.1 | 41,200 | 5/7/2018 |
| 1.3.0-beta | 7,088 | 8/31/2017 |
| 1.2.0 | 67,394 | 4/25/2017 |
| 1.1.2 | 42,461 | 10/26/2016 |
| 1.1.1 | 34,403 | 7/20/2016 |
| 1.0.8 | 18,013 | 4/28/2016 |
| 1.0.7 | 11,803 | 4/7/2016 |
| 1.0.6 | 14,838 | 1/18/2016 |
| 1.0.5 | 4,370 | 12/3/2015 |
**New Features**
* [Verified `WithContext()` logging context enrichment support](https://github.com/akkadotnet/akka.logger.nlog/pull/249) - Akka.NET 1.5.60's `WithContext()` API flows context properties through to NLog `LogEventInfo.Properties` automatically. No code changes were needed -- NLog already called `TryGetProperties()`.
**Dependency Updates**
* [Upgraded to Akka.NET v1.5.60](https://github.com/akkadotnet/akka.net/releases/tag/1.5.60)