From 00acd777d2432ee454c5c75e92947145503dd806 Mon Sep 17 00:00:00 2001 From: Ralph Bean Date: Oct 13 2016 14:55:19 +0000 Subject: Merge #74 `debug is the new go` --- diff --git a/README.rst b/README.rst index 5fb68ad..e115104 100644 --- a/README.rst +++ b/README.rst @@ -382,6 +382,12 @@ states 'done' or 'ready'. Development =========== +``Logging`` +---------- + +If you're running rida from scm then the DevConfiguration from config.py which contains LOG_LEVEL=debug should get applied. If you're having trouble just change LOG_LEVEL in BaseConfiguration. +See more about it in rida/__init__.py config.from_object() + ``Docker`` ---------- diff --git a/config.py b/config.py index 9a225c3..966f150 100644 --- a/config.py +++ b/config.py @@ -56,6 +56,7 @@ class BaseConfiguration(object): class DevConfiguration(BaseConfiguration): LOG_BACKEND = 'console' + LOG_LEVEL = 'debug' HOST = '0.0.0.0' FAS_USERNAME = 'put your fas username here' #FAS_PASSWORD = 'put your fas password here....' @@ -64,6 +65,7 @@ class DevConfiguration(BaseConfiguration): class TestConfiguration(BaseConfiguration): LOG_BACKEND = 'console' + LOG_LEVEL = 'debug' SQLALCHEMY_DATABASE_URI = 'sqlite:///:memory:' DEBUG = True