remove unecessary loggings, change less important loggings to logging.debug

This commit is contained in:
Huy Pham 2020-02-03 12:01:10 -08:00
parent 09397925e8
commit 60dd7691bf
6 changed files with 1 additions and 13 deletions

View file

@ -1,7 +1,6 @@
"""
emane configuration
"""
import logging
import tkinter as tk
import webbrowser
from tkinter import ttk
@ -223,7 +222,6 @@ class EmaneConfigDialog(Dialog):
draw emane model configuration
"""
model_name = self.emane_model.get()
logging.info("configuring emane model: %s", model_name)
dialog = EmaneModelDialog(
self, self.app, self.canvas_node.core_node, model_name
)