Commit 7563184d by Ned Batchelder

Write to stdout so that vagrant doesn't color it red

parent 6cc0c53f
......@@ -3,8 +3,9 @@ import datetime
import time
import logging
import datadog
import sys
logging.basicConfig(level=logging.INFO)
logging.basicConfig(level=logging.INFO, stream=sys.stdout)
logging.getLogger("requests").setLevel(logging.WARNING)
logging.getLogger("dd").setLevel(logging.WARNING)
logger = logging.getLogger(__name__)
......
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