remove unnecessary loggings
This commit is contained in:
parent
5dd379a2ee
commit
09397925e8
9 changed files with 0 additions and 18 deletions
|
@ -107,7 +107,6 @@ class EmaneConfigDialog(Dialog):
|
|||
def __init__(
|
||||
self, master: "Application", app: "Application", canvas_node: "CanvasNode"
|
||||
):
|
||||
logging.debug("EMANE configuration for %s", canvas_node.core_node.name)
|
||||
super().__init__(
|
||||
master, app, f"{canvas_node.core_node.name} EMANE Configuration", modal=True
|
||||
)
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
"""
|
||||
mobility configuration
|
||||
"""
|
||||
import logging
|
||||
from tkinter import ttk
|
||||
from typing import TYPE_CHECKING
|
||||
|
||||
|
@ -21,7 +20,6 @@ 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,
|
||||
|
|
|
@ -52,7 +52,6 @@ class NodeConfigDialog(Dialog):
|
|||
"""
|
||||
create an instance of node configuration
|
||||
"""
|
||||
logging.debug("Node configuration for %s", canvas_node.core_node.name)
|
||||
super().__init__(
|
||||
master, app, f"{canvas_node.core_node.name} Configuration", modal=True
|
||||
)
|
||||
|
|
|
@ -24,7 +24,6 @@ class NodeConfigServiceDialog(Dialog):
|
|||
canvas_node: "CanvasNode",
|
||||
services: Set[str] = None,
|
||||
):
|
||||
logging.debug("Service configuration for %s", canvas_node.core_node.name)
|
||||
title = f"{canvas_node.core_node.name} Config Services"
|
||||
super().__init__(master, app, title, modal=True)
|
||||
self.app = app
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
"""
|
||||
core node services
|
||||
"""
|
||||
import logging
|
||||
import tkinter as tk
|
||||
from tkinter import messagebox, ttk
|
||||
from typing import TYPE_CHECKING, Any, Set
|
||||
|
@ -25,7 +24,6 @@ class NodeServiceDialog(Dialog):
|
|||
canvas_node: "CanvasNode",
|
||||
services: Set[str] = None,
|
||||
):
|
||||
logging.debug("Node services for %s", canvas_node.core_node.name)
|
||||
title = f"{canvas_node.core_node.name} Services"
|
||||
super().__init__(master, app, title, modal=True)
|
||||
self.app = app
|
||||
|
|
|
@ -2,7 +2,6 @@
|
|||
wlan configuration
|
||||
"""
|
||||
|
||||
import logging
|
||||
from tkinter import ttk
|
||||
from typing import TYPE_CHECKING
|
||||
|
||||
|
@ -22,7 +21,6 @@ class WlanConfigDialog(Dialog):
|
|||
def __init__(
|
||||
self, master: "Application", app: "Application", canvas_node: "CanvasNode"
|
||||
):
|
||||
logging.debug("Wlan Configuration for %s", canvas_node.core_node.name)
|
||||
super().__init__(
|
||||
master, app, f"{canvas_node.core_node.name} Wlan Configuration", modal=True
|
||||
)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue