mirror of https://github.com/nucypher/nucypher.git
Remove nucypher's sentry DSN info and set sentry logs to False by default.
parent
da8a8eec94
commit
8b6a29b4f6
|
@ -46,7 +46,7 @@ class GroupGeneralConfig:
|
|||
# Environment Variables
|
||||
config_root = os.environ.get('NUCYPHER_CONFIG_ROOT')
|
||||
sentry_endpoint = os.environ.get("NUCYPHER_SENTRY_DSN", NUCYPHER_SENTRY_ENDPOINT)
|
||||
log_to_sentry = get_env_bool("NUCYPHER_SENTRY_LOGS", True)
|
||||
log_to_sentry = get_env_bool("NUCYPHER_SENTRY_LOGS", False)
|
||||
log_to_file = get_env_bool("NUCYPHER_FILE_LOGS", True)
|
||||
|
||||
def __init__(self,
|
||||
|
|
|
@ -50,9 +50,9 @@ USER_LOG_DIR = os.getenv('NUCYPHER_USER_LOG_DIR', default=APP_DIR.user_log_dir)
|
|||
SeednodeMetadata = namedtuple('seednode', ['checksum_address', 'rest_host', 'rest_port'])
|
||||
SEEDNODES = tuple()
|
||||
|
||||
# Sentry
|
||||
NUCYPHER_SENTRY_PUBLIC_KEY = "fd21c3edda324065a34d3f334dddf1f0"
|
||||
NUCYPHER_SENTRY_USER_ID = '1480080'
|
||||
# Sentry (Add your public key and user ID below)
|
||||
NUCYPHER_SENTRY_PUBLIC_KEY = ""
|
||||
NUCYPHER_SENTRY_USER_ID = ""
|
||||
NUCYPHER_SENTRY_ENDPOINT = f"https://{NUCYPHER_SENTRY_PUBLIC_KEY}@sentry.io/{NUCYPHER_SENTRY_USER_ID}"
|
||||
|
||||
# Web
|
||||
|
|
Loading…
Reference in New Issue