Akka.Logger.NLog
1.5.13
Prefix Reserved
dotnet add package Akka.Logger.NLog --version 1.5.13
NuGet\Install-Package Akka.Logger.NLog -Version 1.5.13
<PackageReference Include="Akka.Logger.NLog" Version="1.5.13" />
paket add Akka.Logger.NLog --version 1.5.13
#r "nuget: Akka.Logger.NLog, 1.5.13"
// Install Akka.Logger.NLog as a Cake Addin #addin nuget:?package=Akka.Logger.NLog&version=1.5.13 // Install Akka.Logger.NLog as a Cake Tool #tool nuget:?package=Akka.Logger.NLog&version=1.5.13
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. |
.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 (14)
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 |
|
AkkaDotModule.Webnori
Package Description |
|
FAkka.Shared
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.13 | 75,324 | 9/27/2023 |
1.5.0 | 35,910 | 3/6/2023 |
1.4.10 | 242,018 | 10/29/2020 |
1.4.5 | 35,947 | 5/4/2020 |
1.3.5 | 36,372 | 1/28/2020 |
1.3.4 | 5,063 | 1/12/2020 |
1.3.3 | 146,573 | 8/1/2018 |
1.3.1 | 39,084 | 5/7/2018 |
1.3.0-beta | 6,634 | 8/31/2017 |
1.2.0 | 64,575 | 4/25/2017 |
1.1.2 | 36,611 | 10/26/2016 |
1.1.1 | 29,582 | 7/20/2016 |
1.0.8 | 15,116 | 4/28/2016 |
1.0.7 | 5,541 | 4/7/2016 |
1.0.6 | 11,781 | 1/18/2016 |
1.0.5 | 3,282 | 12/3/2015 |
1.0.4 | 5,229 | 8/8/2015 |
1.0.3 | 2,943 | 6/12/2015 |
1.0.2 | 2,131 | 6/3/2015 |
1.0.1 | 2,214 | 4/28/2015 |
1.0.0 | 2,041 | 4/9/2015 |
1.0.0-dev1504032244 | 1,652 | 4/3/2015 |
0.8.0 | 2,195 | 2/12/2015 |
0.7.1 | 2,144 | 12/13/2014 |
0.7.0 | 2,507 | 10/20/2014 |
[Upgrade Akka.NET to v1.5.13](https://github.com/akkadotnet/akka.net/releases/tag/1.5.13)
[Bump NLog to 5.2.4](https://github.com/akkadotnet/Akka.Logger.NLog/pull/171)