mirror of
https://github.com/craigerl/aprsd.git
synced 2024-11-26 18:08:36 -05:00
Moved trace.py to utils
This patch moves trace.py to the utils directory
This commit is contained in:
parent
9175703f3a
commit
6894be8fde
@ -6,8 +6,9 @@ import aprslib
|
|||||||
from aprslib.exceptions import LoginError
|
from aprslib.exceptions import LoginError
|
||||||
|
|
||||||
from aprsd import config as aprsd_config
|
from aprsd import config as aprsd_config
|
||||||
from aprsd import exception, trace
|
from aprsd import exception
|
||||||
from aprsd.clients import aprsis, kiss
|
from aprsd.clients import aprsis, kiss
|
||||||
|
from aprsd.utils import trace
|
||||||
|
|
||||||
|
|
||||||
LOG = logging.getLogger("APRSD")
|
LOG = logging.getLogger("APRSD")
|
||||||
|
@ -8,8 +8,9 @@ import logging
|
|||||||
import click
|
import click
|
||||||
|
|
||||||
# local imports here
|
# local imports here
|
||||||
from aprsd import cli_helper, client, messaging, packets, plugin, stats, trace
|
from aprsd import cli_helper, client, messaging, packets, plugin, stats
|
||||||
from aprsd.aprsd import cli
|
from aprsd.aprsd import cli
|
||||||
|
from aprsd.utils import trace
|
||||||
|
|
||||||
|
|
||||||
LOG = logging.getLogger("APRSD")
|
LOG = logging.getLogger("APRSD")
|
||||||
|
@ -14,10 +14,9 @@ from rich.console import Console
|
|||||||
|
|
||||||
# local imports here
|
# local imports here
|
||||||
import aprsd
|
import aprsd
|
||||||
from aprsd import (
|
from aprsd import cli_helper, client, messaging, packets, stats, threads, utils
|
||||||
cli_helper, client, messaging, packets, stats, threads, trace, utils,
|
|
||||||
)
|
|
||||||
from aprsd.aprsd import cli
|
from aprsd.aprsd import cli
|
||||||
|
from aprsd.utils import trace
|
||||||
|
|
||||||
|
|
||||||
# setup the global logger
|
# setup the global logger
|
||||||
|
@ -7,10 +7,11 @@ import click
|
|||||||
import aprsd
|
import aprsd
|
||||||
from aprsd import (
|
from aprsd import (
|
||||||
cli_helper, client, flask, messaging, packets, plugin, stats, threads,
|
cli_helper, client, flask, messaging, packets, plugin, stats, threads,
|
||||||
trace, utils,
|
utils,
|
||||||
)
|
)
|
||||||
from aprsd import aprsd as aprsd_main
|
from aprsd import aprsd as aprsd_main
|
||||||
from aprsd.aprsd import cli
|
from aprsd.aprsd import cli
|
||||||
|
from aprsd.utils import trace
|
||||||
|
|
||||||
|
|
||||||
LOG = logging.getLogger("APRSD")
|
LOG = logging.getLogger("APRSD")
|
||||||
|
@ -11,7 +11,8 @@ import time
|
|||||||
import imapclient
|
import imapclient
|
||||||
from validate_email import validate_email
|
from validate_email import validate_email
|
||||||
|
|
||||||
from aprsd import messaging, plugin, stats, threads, trace
|
from aprsd import messaging, plugin, stats, threads
|
||||||
|
from aprsd.utils import trace
|
||||||
|
|
||||||
|
|
||||||
LOG = logging.getLogger("APRSD")
|
LOG = logging.getLogger("APRSD")
|
||||||
|
@ -2,7 +2,8 @@ import logging
|
|||||||
import shutil
|
import shutil
|
||||||
import subprocess
|
import subprocess
|
||||||
|
|
||||||
from aprsd import plugin, trace
|
from aprsd import plugin
|
||||||
|
from aprsd.utils import trace
|
||||||
|
|
||||||
|
|
||||||
LOG = logging.getLogger("APRSD")
|
LOG = logging.getLogger("APRSD")
|
||||||
|
@ -2,7 +2,8 @@ import logging
|
|||||||
import re
|
import re
|
||||||
import time
|
import time
|
||||||
|
|
||||||
from aprsd import plugin, plugin_utils, trace
|
from aprsd import plugin, plugin_utils
|
||||||
|
from aprsd.utils import trace
|
||||||
|
|
||||||
|
|
||||||
LOG = logging.getLogger("APRSD")
|
LOG = logging.getLogger("APRSD")
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
import logging
|
import logging
|
||||||
|
|
||||||
from aprsd import messaging, packets, plugin, trace
|
from aprsd import messaging, packets, plugin
|
||||||
|
from aprsd.utils import trace
|
||||||
|
|
||||||
|
|
||||||
LOG = logging.getLogger("APRSD")
|
LOG = logging.getLogger("APRSD")
|
||||||
|
@ -1,7 +1,8 @@
|
|||||||
import logging
|
import logging
|
||||||
import time
|
import time
|
||||||
|
|
||||||
from aprsd import plugin, trace
|
from aprsd import plugin
|
||||||
|
from aprsd.utils import trace
|
||||||
|
|
||||||
|
|
||||||
LOG = logging.getLogger("APRSD")
|
LOG = logging.getLogger("APRSD")
|
||||||
|
@ -2,7 +2,8 @@ import datetime
|
|||||||
import logging
|
import logging
|
||||||
import re
|
import re
|
||||||
|
|
||||||
from aprsd import messaging, plugin, trace
|
from aprsd import messaging, plugin
|
||||||
|
from aprsd.utils import trace
|
||||||
|
|
||||||
|
|
||||||
LOG = logging.getLogger("APRSD")
|
LOG = logging.getLogger("APRSD")
|
||||||
|
@ -5,8 +5,8 @@ import time
|
|||||||
from opencage.geocoder import OpenCageGeocode
|
from opencage.geocoder import OpenCageGeocode
|
||||||
import pytz
|
import pytz
|
||||||
|
|
||||||
from aprsd import plugin, plugin_utils, trace
|
from aprsd import plugin, plugin_utils
|
||||||
from aprsd.utils import fuzzy
|
from aprsd.utils import fuzzy, trace
|
||||||
|
|
||||||
|
|
||||||
LOG = logging.getLogger("APRSD")
|
LOG = logging.getLogger("APRSD")
|
||||||
|
@ -1,7 +1,8 @@
|
|||||||
import logging
|
import logging
|
||||||
|
|
||||||
import aprsd
|
import aprsd
|
||||||
from aprsd import plugin, stats, trace
|
from aprsd import plugin, stats
|
||||||
|
from aprsd.utils import trace
|
||||||
|
|
||||||
|
|
||||||
LOG = logging.getLogger("APRSD")
|
LOG = logging.getLogger("APRSD")
|
||||||
|
@ -4,7 +4,8 @@ import re
|
|||||||
|
|
||||||
import requests
|
import requests
|
||||||
|
|
||||||
from aprsd import plugin, plugin_utils, trace
|
from aprsd import plugin, plugin_utils
|
||||||
|
from aprsd.utils import trace
|
||||||
|
|
||||||
|
|
||||||
LOG = logging.getLogger("APRSD")
|
LOG = logging.getLogger("APRSD")
|
||||||
|
Loading…
Reference in New Issue
Block a user