Files
syncserver/syncserver/tests.ini
Dan Callahan 8bec3e9702 Fixup a comment, suppress logging during tests
- Commit 947470d771 rendered a comment inaccurate
  in syncserver/__init__.py.

- Logging to stdout by default obscures test results; disable the stdout deluge
  by changing the logging class in syncserver/tests.ini
2014-04-16 12:54:40 -05:00

24 lines
597 B
INI

[server:main]
use = egg:Paste#http
host = 0.0.0.0
port = 5000
[app:main]
use = egg:SyncServer
[syncserver]
# This must be edited to point to the public URL of your server.
public_url = http://localhost:5000/
# This defines the database in which to store all server data.
#sqluri = sqlite:////tmp/syncserver.db
# This is a secret key used for signing authentication tokens.
#secret = INSERT_SECRET_KEY_HERE
# Enable metlog during tests, but do not log normal traffic to stdout.
[metlog]
backend = "mozsvc.metrics.MetlogPlugin"
sender_class = "metlog.senders.DebugCaptureSender"
enabled = True