Skip to content

Commit 4b930a6

Browse files
authored
Update cis_pdf_parser.py
Setting logging level to Info instead of Debug
1 parent 1696e2c commit 4b930a6

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

cis_pdf_parser.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ def main():
2525

2626
# Setup console logging
2727
logger = logging.getLogger()
28-
logger.setLevel(logging.DEBUG)
28+
logger.setLevel(logging.INFO)
2929
logging_streamhandler = logging.StreamHandler(stream=None)
3030
logging_streamhandler.setFormatter(
3131
logging.Formatter(fmt="%(asctime)s %(levelname)-8s %(message)s")
@@ -222,4 +222,4 @@ def main():
222222

223223
# Setup command line arguments
224224
if __name__ == "__main__":
225-
main()
225+
main()

0 commit comments

Comments
 (0)