WojciechMazur commented on PR #1474: URL: https://github.com/apache/pekko/pull/1474#issuecomment-2361843394
The outputs of `LoggerClass.detectLoggerClassFromStack` has changed: In 3.3.3: ``` org.apache.pekko.actor.typed.internal.LoggerClass$TrickySecurityManager org.apache.pekko.actor.typed.internal.LoggerClass$ org.apache.pekko.persistence.typed.scaladsl.EventSourcedBehavior$ org.apache.pekko.persistence.typed.EventSourcedBehaviorLoggingSpec$ChattyEventSourcingBehavior$ // picked org.apache.pekko.persistence.typed.EventSourcedBehaviorLoggingSpec$ChattyEventSourcingBehavior$$$Lambda$472/640362889 org.apache.pekko.actor.typed.internal.BehaviorImpl$DeferredBehavior$$anon$2 ... ``` in 3.3.4 ``` org.apache.pekko.actor.typed.internal.LoggerClass$TrickySecurityManager org.apache.pekko.actor.typed.internal.LoggerClass$ org.apache.pekko.persistence.typed.scaladsl.EventSourcedBehavior$ org.apache.pekko.persistence.typed.EventSourcedBehaviorLoggingSpec$ // picked org.apache.pekko.persistence.typed.EventSourcedBehaviorLoggingSpec$ChattyEventSourcingBehavior$$$Lambda$472/245565542 ... ``` I belive it was introduced in https://github.com/scala/scala3/pull/19803 but need to confirm it yet. Mentioned PR optimized generated code in such a way that it allowed some unused value to be skipped. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
