nmclient: Remove client creation/deletion logging

The existing client logging is overloading the log.
Therefore, this change removes them.
```
2020-01-27 22:54:54 nmclient.py:249 DEBUG NM.Client created
2020-01-27 22:54:54 nmclient.py:311 DEBUG NM.Client cleaned
2020-01-27 22:54:54 nmclient.py:249 DEBUG NM.Client created
2020-01-27 22:54:54 nmclient.py:311 DEBUG NM.Client cleaned
2020-01-27 22:54:54 nmclient.py:249 DEBUG NM.Client created
```

Signed-off-by: Edward Haas <edwardh@redhat.com>
This commit is contained in:
Edward Haas 2020-01-26 11:37:42 +02:00
parent 4be3850eb1
commit 40e271d982

View File

@ -246,7 +246,6 @@ class _MainLoop:
class _NmClient:
def __init__(self):
self._client = NM.Client.new(None)
logging.debug("NM.Client created")
@property
def client(self):
@ -308,4 +307,3 @@ class _NmClient:
context.iteration(True)
finally:
timeout_source.destroy()
logging.debug("NM.Client cleaned")