ctx.trace("Starting simple get for matched bet between accounts [ " + bet.getAccount1() + ", " + bet.getAccount2() + "]");
ctx.setRequestLogExtension(new BaselineLogExtension(bet, null, null));
MatchedBet matchedBet = new MatchedBet();
MatchedBetContainer body = new MatchedBetContainer();
matchedBet.setBody(body);
body.setMatchedBet(bet);
body.setMarket(market);
try {
matchedBetObserver.onResult(new ExecutionResult(matchedBet));
} catch (Throwable ex) {
LOGGER.log(Level.SEVERE, "An exception occurred emitting the matched bet event:", ex);