Commit caff54e6 by Oleg Marshev

travis.

parent ead202e4
......@@ -12,4 +12,4 @@ DATABASES = {
}
}
LOGGING = get_logger_config(debug=DEBUG)
LOGGING = get_logger_config(debug=DEBUG, dev_env=True, local_loglevel='DEBUG')
......@@ -11,3 +11,27 @@ DISABLE_TOKEN_CHECK = False
INSTALLED_APPS += ('django_nose',)
ES_INDEXES = {'default': 'notes_index_test'}
LOGGING = {
'version': 1,
'disable_existing_loggers': False,
'handlers': {
'console': {
'level': 'DEBUG',
'class': 'logging.StreamHandler',
'stream': sys.stderr,
},
},
'loggers': {
'django': {
'handlers': ['console'],
'level': 'ERROR',
'propagate': False,
},
'elasticsearch.trace': {
'handlers': ['console'],
'level': 'ERROR',
'propagate': False
}
},
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment