forked from p15670423/monkey
add logs
This commit is contained in:
parent
61741eb94d
commit
502997a8e4
|
@ -1,5 +1,6 @@
|
|||
import json
|
||||
import traceback
|
||||
import logging
|
||||
import copy
|
||||
from datetime import datetime
|
||||
|
||||
|
@ -16,6 +17,8 @@ from cc.encryptor import encryptor
|
|||
|
||||
__author__ = 'Barak'
|
||||
|
||||
LOG = logging.getLogger(__name__)
|
||||
|
||||
|
||||
class Telemetry(flask_restful.Resource):
|
||||
@jwt_required()
|
||||
|
@ -167,11 +170,16 @@ class Telemetry(flask_restful.Resource):
|
|||
|
||||
@staticmethod
|
||||
def process_system_info_telemetry(telemetry_json):
|
||||
LOG.debug("Processing system info telemtery for encryption...")
|
||||
|
||||
if 'credentials' in telemetry_json['data']:
|
||||
LOG.debug("Encrypting telemetry credentials...")
|
||||
creds = telemetry_json['data']['credentials']
|
||||
Telemetry.encrypt_system_info_creds(creds)
|
||||
Telemetry.add_system_info_creds_to_config(creds)
|
||||
Telemetry.replace_user_dot_with_comma(creds)
|
||||
|
||||
LOG.debug("Done enrypting")
|
||||
|
||||
@staticmethod
|
||||
def process_trace_telemetry(telemetry_json):
|
||||
|
|
Loading…
Reference in New Issue