From 0ec2a532a0fc93f98ef2e5db835278d17021dcda Mon Sep 17 00:00:00 2001 From: Jonathan Harris Date: Mon, 22 Aug 2016 18:26:43 +0100 Subject: [PATCH] Remove code to enable VerboseLogging again No longer required with Journal --- monitor.py | 93 +----------------------------------------------------- 1 file changed, 1 insertion(+), 92 deletions(-) diff --git a/monitor.py b/monitor.py index 55db5d7c..daa8022f 100644 --- a/monitor.py +++ b/monitor.py @@ -73,50 +73,6 @@ class EDLogs(FileSystemEventHandler): self.callbacks = { 'Jump': None, 'Dock': None } 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('') - 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('\n\t\n\t\n\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('= 0: - f.write(content[:start+8] + '\n\t\tVerboseLogging="1"' + content[start+8:]) - else: - start = content.lower().find("") - if start >= 0: - f.write(content[:start] + '\t\n\t\n' + content[start:]) - else: - f.write(content) # eh ? - return False - - return self.logging_enabled_in_file(appconf) - except: - if __debug__: print_exc() - return False def set_callback(self, name, callback): if name in self.callbacks: @@ -133,10 +89,6 @@ class EDLogs(FileSystemEventHandler): self.stop() self.currentdir = logdir - if not self._logging_enabled(self.currentdir): - # verbose logging reduces likelihood that Docked/Undocked messages will be delayed - self._enable_logging(self.currentdir) - self.root.bind_all('<>', self.jump) # user-generated self.root.bind_all('<>', self.dock) # user-generated @@ -321,18 +273,6 @@ class EDLogs(FileSystemEventHandler): # Apple's SMB implementation is too flaky so assume target machine is OSX return path and isdir(path) and isfile(join(path, pardir, 'AppNetCfg.xml')) - def _logging_enabled(self, path): - if not self._is_valid_logdir(path): - return False - else: - return self.logging_enabled_in_file(join(path, pardir, 'AppConfigLocal.xml')) - - def _enable_logging(self, path): - if not self._is_valid_logdir(path): - return False - else: - return self.enable_logging_in_file(join(path, pardir, 'AppConfigLocal.xml')) - elif platform=='win32': @@ -413,47 +353,16 @@ class EDLogs(FileSystemEventHandler): # Assume target machine is Windows return path and isdir(path) and isfile(join(path, pardir, 'AppConfig.xml')) - def _logging_enabled(self, path): - if not self._is_valid_logdir(path): - return False - else: - return (self.logging_enabled_in_file(join(path, pardir, 'AppConfigLocal.xml')) or - self.logging_enabled_in_file(join(path, pardir, 'AppConfig.xml'))) - - def _enable_logging(self, path): - if not self._is_valid_logdir(path): - return False - else: - return self.enable_logging_in_file(isfile(join(path, pardir, 'AppConfigLocal.xml')) and - join(path, pardir, 'AppConfigLocal.xml') or - join(path, pardir, 'AppConfig.xml')) - elif platform=='linux2': def _logdir(self): return None - # Assume target machine is Windows - def _is_valid_logdir(self, path): + # Assume target machine is Windows return path and isdir(path) and isfile(join(path, pardir, 'AppConfig.xml')) - def _logging_enabled(self, path): - if not self._is_valid_logdir(path): - return False - else: - return (self.logging_enabled_in_file(join(path, pardir, 'AppConfigLocal.xml')) or - self.logging_enabled_in_file(join(path, pardir, 'AppConfig.xml'))) - - def _enable_logging(self, path): - if not self._is_valid_logdir(path): - return False - else: - return self.enable_logging_in_file(isfile(join(path, pardir, 'AppConfigLocal.xml')) and - join(path, pardir, 'AppConfigLocal.xml') or - join(path, pardir, 'AppConfig.xml')) - # singleton monitor = EDLogs()