Ham*_*amy 3 logging scala akka
对于可以相当简洁地表达的Actors,必须添加块({...})以便我可以添加日志命令是令人沮丧的.我想在处理消息之前记录我的内部状态,然后在处理消息之后 - 这可能吗?
def receive = {
// I want to log here instead and remove the non-critical logs from below
// e.g. log.debug(s"Received $message")
// log.debug(s"Internal state is $subscriptions")
case RegisterChannel(name, owner) => {
getChannel(name) match {
case Some(deadChannel: DeadChannel) => {
subscriptions += (RealChannel(name, Server(owner)) -> subscriptions(deadChannel))
subscriptions -= deadChannel
context.watch(owner)
log.debug(s"Replaced $deadChannel with a real channel $channels")
}
case Some(realChannel: RealChannel) =>
log.error(s"Refusing to use RegisterChannel($name, $owner) due to $realChannel")
case None => {
subscriptions += (RealChannel(name, Server(owner)) -> Vector())
context.watch(owner)
log.debug(s"Registered a new channel $channels")
}
}
}
case Terminated(dead) => {
getRole(dead) match {
case Some(client: Client) => // Remove subscriptions
log.debug(s"Received Client Terminated($dead) $client")
subscriptionsFor(client).foreach { subscription =>
subscriptions += (subscription._1 -> subscription._2.filterNot(c => c == client))
}
case Some(server: Server) => { // Remove any channels
log.debug(s"Received Server Terminated($dead) $server")
channelsBy(server).foreach { realChannel =>
subscriptions += (DeadChannel(realChannel.name) -> subscriptions(realChannel))
subscriptions -= realChannel
}
}
case None =>
log.debug(s"Received Terminated($dead) but no channel is registered")
}
}
// I want to log here as well, to see what effect the message had
// e.g. log.debug(s"Finished $message")
// log.debug(s"Internal state is now $subscriptions")
}
Run Code Online (Sandbox Code Playgroud)
我不确定这是否是Akka特定的或Scala模式匹配的特定问题,所以我标记了两者
编辑:尝试@aepurniet的答案后,我不知道如何解决编译器错误.收到需要返回PartialFunction[Any,Unit],但当匹配不是它中的唯一项目=> {...}似乎返回Any=>AnyRef
// Compiler error because msg=>{...} is not proper type
def receive = msg => {
log.info(s"some log")
msg match {
case RegisterChannel(name, owner) => {
getChannel(name) match {
<snip>
Run Code Online (Sandbox Code Playgroud)
received = { case ... }实际上是简写received = msg => msg match { case ... }.您可以重写,receive = msg => { log.info(..); msg match { case ... } }您可能需要另外指定类型.