Changes in test/run_one.py [76f132a:463e7ffc] in sasview


Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • test/run_one.py

    r76f132a r463e7ffc  
    77import imp 
    88from os.path import abspath, dirname, split as splitpath, join as joinpath 
     9 
     10import logging 
     11import logging.config 
     12LOGGER_CONFIG_FILE = os.path.join(os.path.abspath(os.path.dirname(__file__)), 'logging.ini') 
     13logging.config.fileConfig(LOGGER_CONFIG_FILE, disable_existing_loggers=False) 
     14logger = logging.getLogger(__name__) 
    915 
    1016run_py = joinpath(dirname(dirname(abspath(__file__))), 'run.py') 
Note: See TracChangeset for help on using the changeset viewer.