mirror of
https://github.com/craigerl/aprsd.git
synced 2024-11-18 06:11:49 -05:00
Add info logging for rpc server calls
This commit is contained in:
parent
588e140a7f
commit
6ae55fc9a1
@ -60,32 +60,40 @@ class APRSDService(rpyc.Service):
|
||||
|
||||
@rpyc.exposed
|
||||
def get_stats(self):
|
||||
LOG.info("get_stats")
|
||||
stat = stats.APRSDStats()
|
||||
stats_dict = stat.stats()
|
||||
LOG.debug(stats_dict)
|
||||
return json.dumps(stats_dict, indent=4, sort_keys=True, default=str)
|
||||
return_str = json.dumps(stats_dict, indent=4, sort_keys=True, default=str)
|
||||
LOG.info(f"get_stats: return size {len(return_str)}")
|
||||
return return_str
|
||||
|
||||
@rpyc.exposed
|
||||
def get_stats_obj(self):
|
||||
LOG.info("get_stats_obj")
|
||||
return stats.APRSDStats()
|
||||
|
||||
@rpyc.exposed
|
||||
def get_packet_list(self):
|
||||
LOG.info("get_packet_list")
|
||||
return packets.PacketList()
|
||||
|
||||
@rpyc.exposed
|
||||
def get_packet_track(self):
|
||||
LOG.info("get_packet_track")
|
||||
return packets.PacketTrack()
|
||||
|
||||
@rpyc.exposed
|
||||
def get_watch_list(self):
|
||||
LOG.info("get_watch_list")
|
||||
return packets.WatchList()
|
||||
|
||||
@rpyc.exposed
|
||||
def get_seen_list(self):
|
||||
LOG.info("get_seen_list")
|
||||
return packets.SeenList()
|
||||
|
||||
@rpyc.exposed
|
||||
def get_log_entries(self):
|
||||
LOG.info("get_log_entries")
|
||||
entries = log_monitor.LogEntries().get_all_and_purge()
|
||||
return json.dumps(entries, default=str)
|
||||
|
Loading…
Reference in New Issue
Block a user