1
0
mirror of https://github.com/craigerl/aprsd.git synced 2025-04-13 15:08:33 -04:00

Add tracing for dev command

This patch enables tracing output in the log for the dev
test-plugin command
This commit is contained in:
Hemna 2021-12-03 08:53:08 -05:00
parent 1d5f76defc
commit 1233137caf

View File

@ -8,7 +8,7 @@ import logging
import click
# local imports here
from aprsd import cli_helper, client, messaging, packets, plugin, stats
from aprsd import cli_helper, client, messaging, packets, plugin, stats, trace
from ..aprsd import cli
@ -79,6 +79,10 @@ def test_plugin(
if type(message) is tuple:
message = " ".join(message)
if config["aprsd"].get("trace", False):
trace.setup_tracing(["method", "api"])
client.Client(config)
stats.APRSDStats(config)
messaging.MsgTrack(config=config)