aboutsummaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
authorJohn Snow <jsnow@redhat.com>2020-05-14 01:53:52 -0400
committerPhilippe Mathieu-Daudé <philmd@redhat.com>2020-05-31 18:25:30 +0200
commit053774bdecf60c0500d66a05e02e48ff24ab23cf (patch)
treece6e0131d5868133059530b94cd8e450bbeacffd /python
parente0e925a61141552bca7277d06516ad78258423da (diff)
downloadqemu-053774bdecf60c0500d66a05e02e48ff24ab23cf.zip
qemu-053774bdecf60c0500d66a05e02e48ff24ab23cf.tar.gz
qemu-053774bdecf60c0500d66a05e02e48ff24ab23cf.tar.bz2
python/qemu/machine: remove logging configuration
Python 3.5 and above do not print a warning when logging is not configured. As a library, it's best practice to leave logging configuration to the client executable. Signed-off-by: John Snow <jsnow@redhat.com> Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com> Message-Id: <20200514055403.18902-22-jsnow@redhat.com> Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Diffstat (limited to 'python')
-rw-r--r--python/qemu/machine.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/python/qemu/machine.py b/python/qemu/machine.py
index d2f531f..41554de 100644
--- a/python/qemu/machine.py
+++ b/python/qemu/machine.py
@@ -119,9 +119,6 @@ class QEMUMachine(object):
self._console_socket = None
self._remove_files = []
- # just in case logging wasn't configured by the main script:
- logging.basicConfig()
-
def __enter__(self):
return self