Home > database >  My log messages are working for one file with akka typed, but not for classic actor
My log messages are working for one file with akka typed, but not for classic actor

Time:01-15

I'm not sure what is going on, but my logging is working for my akka typed actors but not for my classic actors.

Both belong to the same root package also, this is my setup:

 libraryDependencies   = Seq(
      "io.netty" % "netty-all" % "4.1.68.Final",
      "com.typesafe.akka" %% "akka-actor" % AkkaVersion,
      "com.typesafe.akka" %% "akka-actor-typed" % AkkaVersion,
      "com.typesafe.akka" %% "akka-stream" % AkkaVersion,
      "ch.qos.logback" % "logback-classic" % "1.2.10",
      scalaTest % Test
    )

My logback.xml is:

<?xml version="1.0" encoding="UTF-8"?>
<configuration>

    <appender name="STDOUT" >
        <filter >
            <level>INFO</level>
        </filter>
        <encoder>
            <pattern>[           
  •  Tags:  
  • Related