in src/main/scala/com/twitter/iago/server/ParrotServer.scala [255:268]
private def wilyCheck(): Unit = {
// log the victim destination looked up against the installed dtab, if applicable
config.victim match {
case FinagleDestVictim(dest) =>
try {
val boundDest = Namer.resolve(Path.read(dest))
log.info(s"Victim destination: ${boundDest.sample()}")
} catch {
case e: java.lang.IllegalArgumentException =>
log.error(s"Malformed victim finagle destination: $dest")
}
case _ =>
}
}