@Override
 public Response messagePull(ConnectionContext context, MessagePull pull) throws Exception {
   if (isLogAll() || isLogConsumerEvents()) {
     LOG.info(
         "Message Pull from: {} on {}",
         context.getClientId(),
         pull.getDestination().getPhysicalName());
   }
   return super.messagePull(context, pull);
 }