Hide personal information from log

This commit is contained in:
Jan Losinski 2019-01-07 14:42:59 +01:00
parent 610fb7f2da
commit f1ffeddd2f
1 changed files with 1 additions and 1 deletions

View File

@ -58,7 +58,7 @@ def _book(target: str, reqs: typing.List[_WorkerRequest], debug = False) -> typi
booked_ids = [] booked_ids = []
try: try:
svc = scraper.BookingService(target, debug=debug) svc = scraper.BookingService(target, debug=debug, hide_sensitive_data=True)
for booked in svc.book(data): for booked in svc.book(data):
booked_ids.append(booked.id) booked_ids.append(booked.id)
except: except: