mirror of
https://github.com/platformio/platformio-core.git
synced 2025-07-30 01:57:13 +02:00
Return args + options for telemetry
This commit is contained in:
@ -102,7 +102,7 @@ class MeasurementProtocol(TelemetryBase):
|
|||||||
cmd_path = args[:1]
|
cmd_path = args[:1]
|
||||||
|
|
||||||
self['screen_name'] = " ".join([p.title() for p in cmd_path])
|
self['screen_name'] = " ".join([p.title() for p in cmd_path])
|
||||||
self['cd3'] = " ".join(args)
|
self['cd3'] = " ".join([str(s).lower() for s in sys.argv[1:]])
|
||||||
|
|
||||||
def send(self, hittype):
|
def send(self, hittype):
|
||||||
if not app.get_setting("enable_telemetry"):
|
if not app.get_setting("enable_telemetry"):
|
||||||
|
Reference in New Issue
Block a user