change minor log annoyance

This commit is contained in:
Ruben van de Ven 2023-04-05 17:17:35 +02:00
parent 0f4b6044c4
commit 5deac894a5
2 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,5 @@
{
"root":"/home/wangzd/datasets/MOT",
"root":"/Towards-Realtime-MOT/datasets/MOT",
"train":
{
"mot17":"./data/mot17.train",

View File

@ -10,7 +10,7 @@ def get_logger(name='root'):
handler.setFormatter(formatter)
logger = logging.getLogger(name)
logger.setLevel(logging.DEBUG)
logger.setLevel(logging.INFO)
logger.addHandler(handler)
return logger