mirror of
https://github.com/EDCD/EDMarketConnector.git
synced 2025-06-01 16:11:18 +03:00
Don't enable VerboseLogging in E:D client
No longer needed with E:D 2.2 journal. Partially reverts 5b1cb25.
This commit is contained in:
parent
6dfaf515bc
commit
7821f2a454
71
monitor.py
71
monitor.py
@ -70,52 +70,6 @@ class EDLogs(FileSystemEventHandler):
|
|||||||
self.callbacks = { 'Jump': None, 'Dock': None }
|
self.callbacks = { 'Jump': None, 'Dock': None }
|
||||||
self.last_event = None # for communicating the Jump event
|
self.last_event = None # for communicating the Jump event
|
||||||
|
|
||||||
def logging_enabled_in_file(self, appconf):
|
|
||||||
if not isfile(appconf):
|
|
||||||
return False
|
|
||||||
|
|
||||||
with open(appconf, 'rU') as f:
|
|
||||||
content = f.read().lower()
|
|
||||||
start = content.find('<network')
|
|
||||||
end = content.find('</network>')
|
|
||||||
if start >= 0 and end >= 0:
|
|
||||||
return bool(re.search('verboselogging\s*=\s*\"1\"', content[start+8:end]))
|
|
||||||
else:
|
|
||||||
return False
|
|
||||||
|
|
||||||
def enable_logging_in_file(self, appconf):
|
|
||||||
try:
|
|
||||||
if not exists(appconf):
|
|
||||||
with open(appconf, 'wt') as f:
|
|
||||||
f.write('<AppConfig>\n\t<Network\n\t\tVerboseLogging="1"\n\t>\n\t</Network>\n</AppConfig>\n')
|
|
||||||
return True
|
|
||||||
|
|
||||||
with open(appconf, 'rU') as f:
|
|
||||||
content = f.read()
|
|
||||||
f.close()
|
|
||||||
backup = appconf[:-4] + '_backup.xml'
|
|
||||||
if exists(backup):
|
|
||||||
unlink(backup)
|
|
||||||
rename(appconf, backup)
|
|
||||||
|
|
||||||
with open(appconf, 'wt') as f:
|
|
||||||
start = content.lower().find('<network')
|
|
||||||
if start >= 0:
|
|
||||||
f.write(content[:start+8] + '\n\t\tVerboseLogging="1"' + content[start+8:])
|
|
||||||
else:
|
|
||||||
start = content.lower().find("</appconfig>")
|
|
||||||
if start >= 0:
|
|
||||||
f.write(content[:start] + '\t<Network\n\t\tVerboseLogging="1"\n\t>\n\t</Network>\n' + content[start:])
|
|
||||||
else:
|
|
||||||
f.write(content) # eh ?
|
|
||||||
return False
|
|
||||||
|
|
||||||
assert self._logging_enabled()
|
|
||||||
return self.logging_enabled_in_file(appconf)
|
|
||||||
except:
|
|
||||||
if __debug__: print_exc()
|
|
||||||
return False
|
|
||||||
|
|
||||||
def set_callback(self, name, callback):
|
def set_callback(self, name, callback):
|
||||||
if name in self.callbacks:
|
if name in self.callbacks:
|
||||||
self.callbacks[name] = callback
|
self.callbacks[name] = callback
|
||||||
@ -127,9 +81,6 @@ class EDLogs(FileSystemEventHandler):
|
|||||||
return False
|
return False
|
||||||
if self.running():
|
if self.running():
|
||||||
return True
|
return True
|
||||||
if not self._logging_enabled():
|
|
||||||
# verbose logging reduces likelihood that Docked/Undocked messages will be delayed
|
|
||||||
self._enable_logging()
|
|
||||||
|
|
||||||
self.root.bind_all('<<MonitorJump>>', self.jump) # user-generated
|
self.root.bind_all('<<MonitorJump>>', self.jump) # user-generated
|
||||||
self.root.bind_all('<<MonitorDock>>', self.dock) # user-generated
|
self.root.bind_all('<<MonitorDock>>', self.dock) # user-generated
|
||||||
@ -278,13 +229,6 @@ class EDLogs(FileSystemEventHandler):
|
|||||||
else:
|
else:
|
||||||
return None
|
return None
|
||||||
|
|
||||||
def _logging_enabled(self):
|
|
||||||
return self.logdir and self.logging_enabled_in_file(join(self.logdir, pardir, 'AppConfigLocal.xml'))
|
|
||||||
|
|
||||||
def _enable_logging(self):
|
|
||||||
return self.logdir and self.enable_logging_in_file(join(self.logdir, pardir, 'AppConfigLocal.xml'))
|
|
||||||
|
|
||||||
|
|
||||||
elif platform=='win32':
|
elif platform=='win32':
|
||||||
|
|
||||||
def _logdir(self):
|
def _logdir(self):
|
||||||
@ -360,25 +304,10 @@ class EDLogs(FileSystemEventHandler):
|
|||||||
|
|
||||||
return None
|
return None
|
||||||
|
|
||||||
def _logging_enabled(self):
|
|
||||||
return self.logdir and (self.logging_enabled_in_file(join(self.logdir, pardir, 'AppConfigLocal.xml')) or
|
|
||||||
self.logging_enabled_in_file(join(self.logdir, pardir, 'AppConfig.xml')))
|
|
||||||
|
|
||||||
def _enable_logging(self):
|
|
||||||
return self.logdir and self.enable_logging_in_file(isfile(join(self.logdir, pardir, 'AppConfigLocal.xml')) and join(self.logdir, pardir, 'AppConfigLocal.xml') or join(self.logdir, pardir, 'AppConfig.xml'))
|
|
||||||
|
|
||||||
|
|
||||||
elif platform=='linux2':
|
elif platform=='linux2':
|
||||||
|
|
||||||
def _logdir(self):
|
def _logdir(self):
|
||||||
return None
|
return None
|
||||||
|
|
||||||
def _logging_enabled(self):
|
|
||||||
return False
|
|
||||||
|
|
||||||
def _enable_logging(self):
|
|
||||||
return False
|
|
||||||
|
|
||||||
|
|
||||||
# singleton
|
# singleton
|
||||||
monitor = EDLogs()
|
monitor = EDLogs()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user