1
Fork 0
mirror of https://github.com/RYGhub/royalnet.git synced 2024-11-23 19:44:20 +00:00
This commit is contained in:
Steffo 2019-12-04 18:46:42 +01:00
parent a55aff01cd
commit c245e84c43
3 changed files with 7 additions and 4 deletions

View file

@ -45,7 +45,7 @@ poetry install -E telegram -E discord -E alchemy_easy -E bard -E constellation -
## Developing `royalnet` packages ## Developing `royalnet` packages
> TODO See the [royalnet-pack-template](https://github.com/Steffo99/royalnet-pack-template) project.
## Documentation ## Documentation

View file

@ -1 +1 @@
semantic = "5.1.2" semantic = "5.1.3"

View file

@ -82,11 +82,14 @@ enabled = true
token = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX" token = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"
[Logging] [Logging]
# TODO: document this # The output format for the Royalnet logs
# See https://docs.python.org/3/library/logging.html#logrecord-attributes for {}-formatting
log_format = "{asctime}\t| {processName}\t| {name}\t| {message}" log_format = "{asctime}\t| {processName}\t| {name}\t| {message}"
[Logging.Loggers] [Logging.Loggers]
root = "ERROR" # Set the logging levels for the various loggers
# Valid levels are FATAL, ERROR, WARNING, INFO, and DEBUG
root = "WARNING"
"royalnet" = "INFO" "royalnet" = "INFO"
# "royalnet.commands" = "DEBUG" # "royalnet.commands" = "DEBUG"
# "websockets.protocol" = "ERROR" # "websockets.protocol" = "ERROR"