type hint
This commit is contained in:
parent
464925a621
commit
4a24879206
@ -12,7 +12,7 @@ from flandre.utils.Msg import Msg, KillMsg, NodeOnlineMsg, Msg1, Msg2
|
|||||||
class Node:
|
class Node:
|
||||||
fp = BusClient.fp
|
fp = BusClient.fp
|
||||||
bp = BusClient.bp
|
bp = BusClient.bp
|
||||||
topics = []
|
topics: list[type[Msg]] = []
|
||||||
|
|
||||||
def __init__(self, enable_init=True, level=logging.INFO, conflare=False, broker=False, req=None):
|
def __init__(self, enable_init=True, level=logging.INFO, conflare=False, broker=False, req=None):
|
||||||
self.enable_init = enable_init
|
self.enable_init = enable_init
|
||||||
@ -45,7 +45,8 @@ class Node:
|
|||||||
def base_setup(self):
|
def base_setup(self):
|
||||||
FORMAT = '[%(asctime)s] p%(process)s {%(pathname)s:%(lineno)d} %(levelname)s - %(message)s'
|
FORMAT = '[%(asctime)s] p%(process)s {%(pathname)s:%(lineno)d} %(levelname)s - %(message)s'
|
||||||
FORMAT = '"%(pathname)s:%(lineno)d" [%(asctime)s.%(msecs)03d] %(levelname)s - %(message)s'
|
FORMAT = '"%(pathname)s:%(lineno)d" [%(asctime)s.%(msecs)03d] %(levelname)s - %(message)s'
|
||||||
logging.basicConfig(level=self.level, format=FORMAT, datefmt='%Y-%m-%d %H:%M:%S', )
|
logging.basicConfig(level=self.level, format=FORMAT,
|
||||||
|
datefmt='%Y-%m-%d %H:%M:%S', )
|
||||||
rootLogger = logging.getLogger()
|
rootLogger = logging.getLogger()
|
||||||
|
|
||||||
logFormatter = logging.Formatter(FORMAT, datefmt='%Y-%m-%d %H:%M:%S', )
|
logFormatter = logging.Formatter(FORMAT, datefmt='%Y-%m-%d %H:%M:%S', )
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user