diff options
| -rw-r--r-- | python/report_ops/__main__.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/python/report_ops/__main__.py b/python/report_ops/__main__.py index 4f0f53ea..12796d26 100644 --- a/python/report_ops/__main__.py +++ b/python/report_ops/__main__.py @@ -87,14 +87,14 @@ if args.isosel_reports: try: report.to_db(cob) except ValueError as e: - logger.info(e) + logger.warning(e) if args.wire_reports: for fund in ("BOWDST", "ISOSEL"): try: Wire[fund].to_db(args.date) except ValueError as e: - logger.info(e) + logger.warning(e) if args.send_to_custodians: for account in ( @@ -104,7 +104,7 @@ if args.send_to_custodians: try: upload_to_custodian(account, args.date, not args.no_upload) except ValueError as e: - logger.info(e) + logger.warning(e) if args.payment_settlements: conn = dbconn("dawndb") |
