11

I am trying to make Akka.NET log all messages received by actors but can't get this to work. Here's my configuration (I am using projects from Akka.NET bootcamp):

      akka {                
        stdout-loglevel = DEBUG
        loglevel = DEBUG
        log-config-on-start = on

        actor {
          debug {
            receive = on # log any received message
            autoreceive= on # log automatically received messages, e.g. PoisonPill
            lifecycle = on # log actor lifecycle changes
            event-stream = on # log subscription changes for Akka.NET event stream
            unhandled = on # log unhandled messages sent to actors
          }
        }
      }

I can see that the configuration works for other activities (I see debug messages about actor system initialization and shutdown) but nothing from actual messages sent to actors. I tried both C# and F# examples.

Vagif Abilov
  • 9,835
  • 8
  • 55
  • 100

1 Answers1

25

Found what I was missing. It's not enough to configure debug logging, an actor must implement a marker interface (with no methods) ILogReceive:

class ConsoleWriterActor : UntypedActor, ILogReceive
Vagif Abilov
  • 9,835
  • 8
  • 55
  • 100