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

@ -2,7 +2,6 @@
copy service config dialog
"""
import logging
import tkinter as tk
from tkinter import ttk
from typing import TYPE_CHECKING, Any, Tuple
@ -91,7 +90,6 @@ class CopyServiceConfigDialog(Dialog):
button.grid(row=0, column=2, sticky="ew", padx=PADX)
def click_copy(self):
logging.debug("click copy")
selected = self.tree.selection()
if selected:
item = self.tree.item(selected[0])