From: dongwenjuan Date: Wed, 27 Jul 2016 02:57:16 +0000 (+0800) Subject: add `debug=True` in consumer X-Git-Tag: colorado.1.0~40 X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?p=doctor.git;a=commitdiff_plain;h=caa8d5ecd481fcd39aa97c7a8a61bbac41c0893d add `debug=True` in consumer We need to add the `debug=True` in consumer to get the debug log to get the time of consumer received the notifier Change-Id: I90f2f8167a8670e28a3a5bcb5af054d378ef9b5b Signed-off-by: dongwenjuan --- diff --git a/tests/consumer.py b/tests/consumer.py index 6618f615..9b3230fe 100644 --- a/tests/consumer.py +++ b/tests/consumer.py @@ -35,7 +35,7 @@ def get_args(): def main(): args = get_args() - app.run(host="0.0.0.0", port=args.port) + app.run(host="0.0.0.0", port=args.port, debug=True) if __name__ == '__main__':