From dbd8a60faf5b59fa21efa22af393a073b227e9c5 Mon Sep 17 00:00:00 2001 From: Viktor Klang Date: Mon, 20 Dec 2010 10:34:59 +0100 Subject: [PATCH] Adding debug log of parse exception in parseException --- akka-remote/src/main/scala/akka/remote/RemoteClient.scala | 1 + 1 file changed, 1 insertion(+) diff --git a/akka-remote/src/main/scala/akka/remote/RemoteClient.scala b/akka-remote/src/main/scala/akka/remote/RemoteClient.scala index 309521fc81..3d90d0f417 100644 --- a/akka-remote/src/main/scala/akka/remote/RemoteClient.scala +++ b/akka-remote/src/main/scala/akka/remote/RemoteClient.scala @@ -516,6 +516,7 @@ class RemoteClientHandler( .newInstance(exception.getMessage).asInstanceOf[Throwable] } catch { case problem => + log.debug("Couldn't parse exception returned from RemoteServer",problem) log.warn("Couldn't create instance of {} with message {}, returning UnparsableException",classname, exception.getMessage) UnparsableException(classname, exception.getMessage) }