Commit 73ed5d71b451771dc9bfd47b4b7ad024b1dcbf75
1 parent
6ecdcdbe
remove one debugging output
Showing
1 changed file
with
2 additions
and
2 deletions
oletools/ppt_parser.py
| ... | ... | @@ -1365,8 +1365,8 @@ class PptParser(object): |
| 1365 | 1365 | while True: |
| 1366 | 1366 | start_pos = stream.tell() |
| 1367 | 1367 | n_reads += 1 |
| 1368 | - log.debug('read {} starting from {}' | |
| 1369 | - .format(BUF_SIZE, start_pos)) | |
| 1368 | + #log.debug('read {} starting from {}' | |
| 1369 | + # .format(BUF_SIZE, start_pos)) | |
| 1370 | 1370 | buf = stream.read(BUF_SIZE) |
| 1371 | 1371 | idx = buf.find(pattern) |
| 1372 | 1372 | while idx != -1: | ... | ... |