Pathos315 / sciscraper

A bulk academic PDF extractor program, designed specifically for papers about behavioral science and design.
MIT License
12 stars 5 forks source link

Improved logging consistency and readability #8

Closed trag1c closed 1 year ago

trag1c commented 1 year ago
  1. Changed f-strings found in some places to %-formatted strings for consistency
  2. Replaced instances of logger.debug("x=%s", repr(x)) with logger.debug("x=%r", x)
  3. Removed unnecessary repr() calls for certain objects that do not have a str() conversion defined