logging.info for more important loggings and logging.debug for less important loggings that user might not care about
This commit is contained in:
parent
6aa7d2175d
commit
6c89ba1abb
14 changed files with 132 additions and 62 deletions
|
@ -1,6 +1,7 @@
|
|||
"""
|
||||
mobility configuration
|
||||
"""
|
||||
import logging
|
||||
from tkinter import ttk
|
||||
from typing import TYPE_CHECKING
|
||||
|
||||
|
@ -20,6 +21,7 @@ class MobilityConfigDialog(Dialog):
|
|||
def __init__(
|
||||
self, master: "Application", app: "Application", canvas_node: "CanvasNode"
|
||||
):
|
||||
logging.debug("Mobility configuration for %s", canvas_node.core_node.name)
|
||||
super().__init__(
|
||||
master,
|
||||
app,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue