Skip to content

Commit

Permalink
turn print -> log.debug calls
Browse files Browse the repository at this point in the history
  • Loading branch information
chris-simpson committed Mar 12, 2021
1 parent 72a7e54 commit de027f2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions gempy/eti_core/etifile.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@ def __init__(self, name=None, inputs=None, params=None):
self.directory = tempfile.mkdtemp(prefix='dragons.')

def prepare(self):
print("ETIFile prepare()")
log.debug("ETIFile prepare()")

def recover(self):
print("ETIFile recover()")
log.debug("ETIFile recover()")

def clean(self):
print("ETIFile clean()")
log.debug("ETIFile clean()")
shutil.rmtree(self.directory)

0 comments on commit de027f2

Please sign in to comment.