You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: RELEASE_NOTES.md
+18Lines changed: 18 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,3 +1,21 @@
1
+
#### 1.5.25 June 17 2024 ####
2
+
3
+
*[Update Akka.Hosting to 1.5.25](https://github.com/akkadotnet/akka.net/releases/tag/1.5.25)
4
+
*[implicitly convert regular `BusLogger` to `SerilogLoggingAdapter` when `ForContext` is called](https://github.com/akkadotnet/Akka.Logger.Serilog/pull/285)
5
+
6
+
As of Akka.Logger.Serilog v1.5.25, you can now do the following:
7
+
8
+
```csharp
9
+
varlog=Context.GetLogger()
10
+
.ForContext("Address", "No. 4 Privet Drive")
11
+
.ForContext("Town", "Little Whinging")
12
+
.ForContext("County", "Surrey")
13
+
.ForContext("Country", "England");
14
+
log.Info("My boss makes me use {Semantic} logging", "semantic");
15
+
```
16
+
17
+
And it will work without having to explicitly call `Context.GetLogger<SerilogLoggingAdapter>()` first.
18
+
1
19
#### 1.5.12.1 August 31 2023 ####
2
20
3
21
*[Update Akka.Hosting to 1.5.12.1](https://github.com/akkadotnet/Akka.Hosting/releases/tag/1.5.12.1)
<PackageReleaseNotes>[Update Akka.Hosting to 1.5.12.1](https://github.com/akkadotnet/Akka.Hosting/releases/tag/1.5.12.1)</PackageReleaseNotes>
7
-
<VersionPrefix>1.5.12.1</VersionPrefix>
6
+
<PackageReleaseNotes>[Update Akka.Hosting to 1.5.25](https://github.com/akkadotnet/akka.net/releases/tag/1.5.25)
7
+
[implicitly convert regular `BusLogger` to `SerilogLoggingAdapter` when `ForContext` is called](https://github.com/akkadotnet/Akka.Logger.Serilog/pull/285)
8
+
As of Akka.Logger.Serilog v1.5.25, you can now do the following:
9
+
```csharp
10
+
var log = Context.GetLogger()
11
+
.ForContext("Address", "No. 4 Privet Drive")
12
+
.ForContext("Town", "Little Whinging")
13
+
.ForContext("County", "Surrey")
14
+
.ForContext("Country", "England");
15
+
log.Info("My boss makes me use {Semantic} logging", "semantic");
16
+
```
17
+
And it will work without having to explicitly call `Context.GetLogger<SerilogLoggingAdapter>()` first.</PackageReleaseNotes>
0 commit comments