[Core] Add Sentry logger for core cogs data gathering only (#813)

This commit is contained in:
Will
2017-06-16 14:48:00 -04:00
committed by Twentysix
parent 422bbba7f6
commit 94cfd23c00
4 changed files with 46 additions and 27 deletions

View File

@@ -1,8 +1,10 @@
from core import sentry_setup
import logging
def test_sentry_capture():
sentry_setup.init_sentry_logging()
log = logging.getLogger(__name__)
sentry_setup.init_sentry_logging(log)
assert sentry_setup.client is not None