Last change
on this file since 1512 was
1512,
checked in by toby, 9 years ago
|
implement logging and config storage
|
File size:
777 bytes
|
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 | ''' This file contains optional configuration options for GSAS-II. Note that |
---|
11 | this file is not required to be present and code should be written to |
---|
12 | provide the default behavior if the file is not present or if any configuration |
---|
13 | variable is not set, but please do place a comment here defining each variable and |
---|
14 | what it does. |
---|
15 | ''' |
---|
16 | Enable_logging = None |
---|
17 | Enable_logging = True |
---|
18 | 'Set to True to enable use of command logging' |
---|
19 | |
---|
20 | logging_debug = None |
---|
21 | #logging_debug = True |
---|
22 | 'Set to True to enable debug for logging' |
---|
Note: See
TracBrowser
for help on using the repository browser.