Switch to side-by-side view

--- a/ForgeForum/sandbox-test.ini
+++ b/ForgeForum/sandbox-test.ini
@@ -16,15 +16,33 @@
 port = 5000
 
 [app:main]
-use = config:../pyforge/sandbox.ini#plugin_test
-db_prefix = test_
-solr.server = http://localhost:50065/solr
-load_test_data = true
-cache_test_data = true
-static_root = /static/
+use = config:../pyforge/sandbox-test.ini
 
 [app:main_without_authn]
-use = main
-skip_authentication = True
+use = config:../pyforge/sandbox-test.ini#main_without_authn
 
-# Add additional test specific configuration options as necessary.
+[app:main_with_amqp]
+use = config:../pyforge/sandbox-test.ini#main_with_amqp
+
+[loggers]
+keys = root
+
+[handlers]
+keys = test
+
+[formatters]
+keys = generic
+
+[logger_root]
+level = INFO
+handlers = test
+
+[handler_test]
+class = FileHandler
+args = ('test.log',)
+level = NOTSET
+formatter = generic
+
+[formatter_generic]
+format = %(asctime)s,%(msecs)03d %(levelname)-5.5s [%(name)s] %(message)s
+datefmt = %H:%M:%S