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: Sources/DistributedActors/ActorSystemSettings.swift
+7-7Lines changed: 7 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -64,8 +64,12 @@ extension Array where Element == ActorTransport {
64
64
publicstructLoggingSettings{
65
65
publicstaticlet`default`=LoggingSettings()
66
66
67
-
/// At what level should the library actually log and print logs // TODO: We'd want to replace this by proper log handlers which allow config by labels
@@ -353,7 +353,7 @@ internal final class SystemMessageRedeliveryHandler: ChannelDuplexHandler {
353
353
typealiasInboundIn=Wire.Envelope // we handle deserialization in case it is about a system message (since message == system message envelope)
354
354
typealiasInboundOut=Wire.Envelope // we pass along user messages; all system messages are handled in-place here (ack, nack), or delivered directly to the recipient from this handler
355
355
356
-
privateletlog:LoggerWithSource
356
+
privateletlog:Logger
357
357
privateletsystem:ActorSystem
358
358
privateletclusterShell:ClusterShell.Ref
359
359
@@ -366,7 +366,7 @@ internal final class SystemMessageRedeliveryHandler: ChannelDuplexHandler {
/// Anonymous `/dead/letters` reference, which may be used for messages which have no logical recipient.
@@ -140,11 +140,11 @@ extension ActorSystem {
140
140
/// but not for anything more -- users shall assume that their communication is correct and only debug why a dead reference appeared if it indeed does happen.
0 commit comments