Package akka.actor
Interface ActorLogging
-
- All Known Subinterfaces:
AsyncWriteProxy
,FSM<S,D>
,LeveldbCompaction
,LeveldbStore
,LoggingFSM<S,D>
,LoggingPersistentFSM<S,D,E>
,PersistentFSM<S,D,E>
,PersistentFSMBase<S,D,E>
,ReliableProxyDebugLogging
,SnapshotStore
- All Known Implementing Classes:
AbstractEventsByPersistenceIdPublisher
,AbstractEventsByTagPublisher
,AbstractFSM
,AbstractFSMWithStash
,AbstractLoggingActor
,AbstractLoggingFSM
,AbstractPersistentFSM
,AbstractPersistentFSMBase
,AbstractPersistentLoggingFSM
,ActivationTracker
,ActorAdapter
,ActorGraphInterpreter
,ActorProcessorImpl
,AllPersistenceIdsPublisher
,AsyncDnsManager
,AsyncDnsResolver
,AutoDown
,BackoffOnRestartSupervisor
,BackoffOnStopSupervisor
,BackoffSupervisor
,BarrierCoordinator
,CircuitBreakerProxy
,ClientFSM
,ClusterClient
,ClusterDomainEventPublisher
,ClusterHeartbeatReceiver
,ClusterHeartbeatSender
,ClusterMetricsCollector
,ClusterMetricsSupervisor
,ClusterReceptionist
,ClusterReceptionist.Internal$.ClientResponseTunnel
,ClusterRemoteWatcher
,ClusterSingletonManager
,ClusterSingletonProxy
,CrossDcHeartbeatSender
,CurrentEventsByPersistenceIdPublisher
,CurrentEventsByTagPublisher
,DDataShard
,DDataShardCoordinator
,DistributedPubSubMediator
,DnsClient
,EndpointActor
,EndpointReader
,EndpointWriter
,FanIn
,FanOut
,FanoutProcessorImpl
,FileSubscriber
,InetAddressDnsResolver
,InputStreamPublisher
,JournalPerfSpec.BenchActor
,LeveldbJournal
,LiveEventsByPersistenceIdPublisher
,LiveEventsByTagPublisher
,LmdbDurableStore
,LocalSnapshotStore
,Main.Terminator
,NoSnapshotStore
,OutputStreamSubscriber
,PersistencePluginProxy
,PersistentShard
,PersistentShardCoordinator
,ProtocolStateActor
,RecoveryPermitter
,ReliableDeliverySupervisor
,ReliableProxy
,ReliableProxy.Receiver
,RememberEntityStarter
,RemoteWatcher
,RemoveInternalClusterShardingData
,ReplayFilter
,Replicator
,SelectionHandler
,ServerFSM
,Shard
,ShardCoordinator
,ShardRegion
,ShardRegion.HandOffStopper
,SharedLeveldbJournal
,SharedLeveldbStore
,SimpleDnsManager
,SnapshotStore
,TcpConnection
,TcpDnsClient
,TcpIncomingConnection
,TcpListener
,TcpManager
,TcpOutgoingConnection
,ThrottledAssociation
,ThrottlerManager
,TimerBasedThrottler
,TLSActor
,UdpConnection
,UdpListener
,UdpSender
,Unzip
,WriteAggregator
public interface ActorLogging
Scala API: Mix in ActorLogging into your Actor to easily obtain a reference to a logger, which is available under the name "log".class MyActor extends Actor with ActorLogging { def receive = { case "pigdog" => log.info("We've got yet another pigdog on our hands") } }
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
_log_$eq(LoggingAdapter x$1)
LoggingAdapter
log()
-
-
-
Method Detail
-
_log_$eq
void _log_$eq(LoggingAdapter x$1)
-
log
LoggingAdapter log()
-
-