Add trace logging for more packets

This commit is contained in:
Chord 2016-07-26 02:16:47 -04:00
parent c77928b915
commit d880a95aee
2 changed files with 5 additions and 5 deletions

View file

@ -67,7 +67,7 @@ class SessionRouter(pipeline : List[SessionPipeline]) extends Actor with MDCCont
if(idBySocket.contains(from)) {
MDC("sessionId") = idBySocket{from}.toString
log.trace(s"Handling recieved packet")
log.trace(s"Handling received packet ${msg} -> ${sessionById{idBySocket{from}}.startOfPipe.path.name}")
sessionById{idBySocket{from}}.startOfPipe !> RawPacket(msg)
MDC.clear()