Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/sas/sasgui/guiframe/gui_manager.py

    r2f22db9 r49165488  
    7777    # clean all these module variables and put them into a config class 
    7878    # that can be passed by sasview.py. 
    79     logger.debug(sys.executable) 
    80     logger.debug(str(sys.argv)) 
     79    logger.info(sys.executable) 
     80    logger.info(str(sys.argv)) 
    8181    from sas import sasview as sasview 
    8282    app_path = os.path.dirname(sasview.__file__) 
    83     logger.debug("Using application path: %s", app_path) 
     83    logger.info("Using application path: %s", app_path) 
    8484    return app_path 
    8585 
     
    109109        if fObj is not None: 
    110110            fObj.close() 
    111     logger.debug("GuiManager loaded %s/%s" % (path, file)) 
     111    logger.info("GuiManager loaded %s/%s" % (path, file)) 
    112112    return config_module 
    113113 
     
    126126        # Didn't find local config, load the default 
    127127        import sas.sasgui.guiframe.config as config 
    128         logger.debug("using default local_config") 
     128        logger.info("using default local_config") 
    129129    else: 
    130         logger.debug("found local_config in %s" % os.getcwd()) 
     130        logger.info("found local_config in %s" % os.getcwd()) 
    131131else: 
    132     logger.debug("found local_config in %s" % PATH_APP) 
     132    logger.info("found local_config in %s" % PATH_APP) 
    133133 
    134134from sas.sasgui.guiframe.customdir import SetupCustom 
     
    139139    if custom_config is None: 
    140140        msgConfig = "Custom_config file was not imported" 
    141         logger.debug(msgConfig) 
     141        logger.info(msgConfig) 
    142142    else: 
    143         logger.debug("using custom_config in %s" % os.getcwd()) 
     143        logger.info("using custom_config in %s" % os.getcwd()) 
    144144else: 
    145     logger.debug("using custom_config from %s" % c_conf_dir) 
     145    logger.info("using custom_config from %s" % c_conf_dir) 
    146146 
    147147# read some constants from config 
     
    21292129                if "SAS_OPENCL" in line: 
    21302130                    if sas_opencl: 
    2131                         new_config_lines.append("SAS_OPENCL = \"" + sas_opencl 
    2132                                                 + "\"\n") 
     2131                        new_config_lines.append("SAS_OPENCL = \""+sas_opencl+"\"") 
    21332132                    else: 
    2134                         new_config_lines.append("SAS_OPENCL = \"None\"\n") 
     2133                        new_config_lines.append("SAS_OPENCL = None") 
    21352134                else: 
    21362135                    new_config_lines.append(line) 
     
    21572156        if response is not None: 
    21582157            try: 
     2158                #  
    21592159                content = response.read().strip() 
    2160                 logger.info("Connected to www.sasview.org. Latest version: %s", content) 
     2160                logger.info("Connected to www.sasview.org. Latest version: %s" 
     2161                             % (content)) 
    21612162                version_info = json.loads(content) 
    21622163            except: 
Note: See TracChangeset for help on using the changeset viewer.