def __str__()

in fix_session.py [0:0]


    def __str__(self):
        side = "BUY" if self.side == fix.Side_BUY else "SELL"
        order_type = "LIMIT" if self.order_type == fix.OrdType_LIMIT else "MARKET"
        return "OrderRequest: ID=%s, OrderType=%s, Symbol=%s, Side=%s, Quantity=%s, Price=%s, Account=%s, Destination=%s, Exchange=%s" % \
               (self.id, order_type, self.symbol, side, self.quantity, self.price, self.account, self.destination, self.exchange)