From a4de6ce88261c1c36d782597ff7347fce1a9ddef Mon Sep 17 00:00:00 2001 From: Russell Bryant Date: Thu, 14 Feb 2013 11:21:15 -0500 Subject: Remove a log message in test code. This log message indicates that this code should only run during testing. The downside is that it does run during testing and can cause a bunch of annoying noise in test logs. Just remove it. Change-Id: I2cc18f3b7871dbfa8859e33225fb7c2bb1ccc53b --- nova/network/minidns.py | 1 - 1 file changed, 1 deletion(-) diff --git a/nova/network/minidns.py b/nova/network/minidns.py index c565f368e..dc9dc6f17 100644 --- a/nova/network/minidns.py +++ b/nova/network/minidns.py @@ -168,7 +168,6 @@ class MiniDNS(dns_driver.DNSDriver): return entries def delete_dns_file(self): - LOG.warn(_("This shouldn't be getting called except during testing.")) if os.path.exists(self.filename): try: os.remove(self.filename) -- cgit