Exemplo n.º 1
0
 def processCommandLineDebugVerboseLogFile(self):
     EDVerbose.DEBUG("EDApplication.processCommandLineDebugVerboseLogFile")
     EDVerbose.setVerboseOff()
     # Check if no log file
     if (self.__edCommandLine.existCommand(EDApplication.NO_LOG_LABEL)):
         EDVerbose.setLogFileOff()
         EDVerbose.DEBUG("Log file output switched off")
     # Check if debug mode
     if (self.__edCommandLine.existCommand(EDApplication.DEBUG_PARAM_LABEL_1) or
         self.__edCommandLine.existCommand(EDApplication.DEBUG_PARAM_LABEL_2)):
         EDVerbose.setVerboseDebugOn()
         EDVerbose.DEBUG("Debug Mode [ON]")
     # Check if verbose
     if (self.__edCommandLine.existCommand(EDApplication.VERBOSE_MODE_LABEL)):
         EDVerbose.setVerboseOn()