Skip to content

Commit

Permalink
Fix consistent logging messages
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewgilbert committed Sep 10, 2018
1 parent d78791d commit c942d4a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pdblp/pdblp.py
Original file line number Diff line number Diff line change
Expand Up @@ -662,7 +662,7 @@ def bsrch(self, domain):
self.session.sendRequest(request)
data = []
for msg in self._receive_events():
logger.info(msg)
logger.info("Message Received:\n %s" % msg)
for v in msg.getElement("DataRecords").values():
for f in v.getElement("DataFields").values():
data.append(f.getElementAsString("StringValue"))
Expand Down

0 comments on commit c942d4a

Please sign in to comment.