Line | |
---|
1 | # -*- coding: utf-8 -*- |
---|
2 | #config.py - Variables used to set optional configuration options |
---|
3 | ########### SVN repository information ################### |
---|
4 | # $Date: $ |
---|
5 | # $Author: toby $ |
---|
6 | # $Revision: $ |
---|
7 | # $URL: $ |
---|
8 | # $Id: $ |
---|
9 | ########### SVN repository information ################### |
---|
10 | ''' |
---|
11 | *config.py: Configuration options* |
---|
12 | ---------------------------------- |
---|
13 | |
---|
14 | This file contains optional configuration options for GSAS-II. Note that |
---|
15 | this file is not required to be present and code should be written to |
---|
16 | provide the default behavior if the file is not present or if any configuration |
---|
17 | variable is not set, but please do place a docstring here for every used |
---|
18 | config variable explaining what it does. |
---|
19 | ''' |
---|
20 | |
---|
21 | Enable_logging = None |
---|
22 | 'Set to True to enable use of command logging' |
---|
23 | |
---|
24 | logging_debug = None |
---|
25 | 'Set to True to enable debug for logging' |
---|
Note: See
TracBrowser
for help on using the repository browser.