Revert "remove debug file on start"

This reverts commit f7ce113557.
This commit is contained in:
chrys 2016-10-19 22:52:32 +02:00
parent f7ce113557
commit 3c438b5262

View File

@ -21,11 +21,6 @@ class debug():
self._fileOpened = False
def initialize(self, environment):
self.env = environment
if os.path.exists(self._fileName):
try:
os.remove(self._fileName)
except OSError, e:
print ("Error: %s - %s." % (e.filename,e.strerror))
def shutdown(self):
self.closeDebugFile()
def __del__(self):