Skip to content

Commit 8c9e895

Browse files
committed
Remove useless logs
1 parent 0d61453 commit 8c9e895

File tree

1 file changed

+1
-8
lines changed

1 file changed

+1
-8
lines changed

python/tank/authentication/sso_saml2/core/sso_saml2_core.py

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -222,17 +222,10 @@ def __init__(self, profile, parent, developer_mode=False):
222222
"""
223223
Class Constructor.
224224
"""
225-
get_logger().debug("TKWebPageQtWebEngine.__init__")
226-
super(TKWebPageQtWebEngine, self).__init__(profile, parent)
225+
super().__init__(profile, parent)
227226
self._profile = profile
228227
self._developer_mode = developer_mode
229228

230-
def __del__(self):
231-
"""
232-
Class Destructor.
233-
"""
234-
get_logger().debug("TKWebPageQtWebEngine.__del__")
235-
236229
def acceptNavigationRequest(self, url, n_type, is_mainframe):
237230
"""
238231
Overloaded method, to properly control the behaviour of clicking on

0 commit comments

Comments
 (0)