aboutsummaryrefslogtreecommitdiff
path: root/kamon-core/src/main/scala/kamon/instrumentation/ActorRefTellInstrumentation.scala
diff options
context:
space:
mode:
authorIvan Topolnak <ivantopo@gmail.com>2013-09-21 22:57:43 -0300
committerIvan Topolnak <ivantopo@gmail.com>2013-09-21 22:57:43 -0300
commit50823a3cc4f6644d569255c7e04423c36eedf295 (patch)
tree8d3cbffc42b62074ea6d56d558326fd86fae8f02 /kamon-core/src/main/scala/kamon/instrumentation/ActorRefTellInstrumentation.scala
parentbbf7afd85809f6d43b310290b4bb9102dd36043c (diff)
downloadKamon-50823a3cc4f6644d569255c7e04423c36eedf295.tar.gz
Kamon-50823a3cc4f6644d569255c7e04423c36eedf295.tar.bz2
Kamon-50823a3cc4f6644d569255c7e04423c36eedf295.zip
wip
Diffstat (limited to 'kamon-core/src/main/scala/kamon/instrumentation/ActorRefTellInstrumentation.scala')
-rw-r--r--kamon-core/src/main/scala/kamon/instrumentation/ActorRefTellInstrumentation.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/kamon-core/src/main/scala/kamon/instrumentation/ActorRefTellInstrumentation.scala b/kamon-core/src/main/scala/kamon/instrumentation/ActorRefTellInstrumentation.scala
index 4f0b8a08..fdd7b696 100644
--- a/kamon-core/src/main/scala/kamon/instrumentation/ActorRefTellInstrumentation.scala
+++ b/kamon-core/src/main/scala/kamon/instrumentation/ActorRefTellInstrumentation.scala
@@ -24,7 +24,7 @@ class ActorRefTellInstrumentation {
@Around("sendingMessageToActorRef(actor, message, sender)")
def around(pjp: ProceedingJoinPoint, actor: ActorRef, message: Any, sender: ActorRef): Unit = {
import kamon.Instrument.instrumentation.sendMessageTransformation
-
+ //println(s"====> [$sender] => [$actor] --- $message")
pjp.proceedWithTarget(actor, sendMessageTransformation(sender, actor, message).asInstanceOf[AnyRef], sender)
}
}
@@ -76,7 +76,7 @@ class UnregisteredActorRefInstrumentation {
@Around("sprayResponderHandle(message, sender)")
def sprayInvokeAround(pjp: ProceedingJoinPoint, message: Any, sender: ActorRef): Unit = {
import ProceedingJoinPointPimp._
- println("Handling unregistered actor ref message: "+message)
+ //println("Handling unregistered actor ref message: "+message)
message match {
case SimpleTraceMessage(msg, ctx) => {
ctx match {