Update Settings authored by Henrique Varella Ehrenfried's avatar Henrique Varella Ehrenfried
......@@ -13,7 +13,7 @@ This page contains information about HOTMapper Settings.
* [Logging level and format of the message](#logging-level-and-format-of-the-message)
* [Mapping protocol columns](#mapping-protocol-columns)
In the settings.py file, present on the HOTMapper main folder, you'll encounter the following options:
In the `settings.py` file, present on the HOTMapper main folder, you'll encounter the following options:
#### Login credentials in database (monetdb)
~~~
......@@ -50,8 +50,13 @@ During the creation of your first table, HOTMapper will also create a table to s
~~~
#### Logging level and format of the message
The possible levels, from showing less info to more, are:
* CRITICAL, ERROR, WARNING, INFO, DEBUG, NOT SET
The possible levels, that starting from the one that shows less information to the one that shows more, are:
**1.** CRITICAL;
**2.** ERROR;
**3.** WARNING;
**4.** INFO;
**5.** DEBUG;
**6.** NOT SET;
~~~
LOGGING_LEVEL = logging.INFO
LOGGING_FORMAT = "%(levelname)s - %(name)s: %(message)s"
......@@ -61,7 +66,7 @@ The possible levels, from showing less info to more, are:
You can also change the name of the columns present in the mapping protocol by editing the 'standard_columns' constant
in the protocol.py file, contained in the folder hotmapper/database.
~~~
This option will be more easily avaliable when we finish working in the complete internationalization of the HOTMapper, then it'll have presets for specific languages to facilitate understanding and use of the tool
This option will be more easily available when we finish working in the complete internationalization of the HOTMapper, then it will have presets for specific languages to facilitate understanding and use of the tool
~~~
~~~
standard_columns = {
......
......