From 748b6ea83e35126042fea997d5c7633ec4109851 Mon Sep 17 00:00:00 2001 From: Steven Loria Date: Sun, 8 Dec 2013 11:27:55 -0600 Subject: [PATCH] Disable SQLAlchemy echo --- {{cookiecutter.app_name}}/{{cookiecutter.app_name}}/settings.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/{{cookiecutter.app_name}}/{{cookiecutter.app_name}}/settings.py b/{{cookiecutter.app_name}}/{{cookiecutter.app_name}}/settings.py index 3e007b6..78e4a6c 100644 --- a/{{cookiecutter.app_name}}/{{cookiecutter.app_name}}/settings.py +++ b/{{cookiecutter.app_name}}/{{cookiecutter.app_name}}/settings.py @@ -17,7 +17,6 @@ class ProdConfig(Config): ENV = 'prod' DEBUG = False SQLALCHEMY_DATABASE_URI = 'postgresql://localhost/example' - SQLALCHEMY_ECHO = False DEBUG_TB_ENABLED = False # Disable Debug toolbar @@ -29,7 +28,6 @@ class DevConfig(Config): # Put the db file in project root DB_PATH = os.path.join(Config.PROJECT_ROOT, DB_NAME) SQLALCHEMY_DATABASE_URI = "sqlite:///{0}".format(DB_PATH) - SQLALCHEMY_ECHO = True DEBUG_TB_ENABLED = True ASSETS_DEBUG = True # Don't bundle/minify static assets CACHE_TYPE = "simple" # Can be "memcached", "redis", etc.