[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]

[minion-cvs] Downgrade an error to warning.



Update of /home/minion/cvsroot/src/minion/lib/mixminion/server
In directory moria.mit.edu:/tmp/cvs-serv6886/lib/mixminion/server

Modified Files:
	ServerKeys.py 
Log Message:
Downgrade an error to warning.

Index: ServerKeys.py
===================================================================
RCS file: /home/minion/cvsroot/src/minion/lib/mixminion/server/ServerKeys.py,v
retrieving revision 1.42
retrieving revision 1.43
diff -u -d -r1.42 -r1.43
--- ServerKeys.py	6 Jun 2003 07:54:46 -0000	1.42
+++ ServerKeys.py	6 Jun 2003 09:12:52 -0000	1.43
@@ -165,13 +165,13 @@
         if not state:
             return
         
-        LOG.error("Some generated keysets do not match "
+        LOG.warn("Some generated keysets do not match "
                   "current configuration...")
         
         for ok, ks in state:
             va,vu = ks.getLiveness()
-            LOG.error("Keyset %s (%s--%s):",ks.keyname,formatTime(va,1),
-                      formatTime(vu,1))
+            LOG.warn("Keyset %s (%s--%s):",ks.keyname,formatTime(va,1),
+                     formatTime(vu,1))
             ks.checkConsistency(self.config, 1)
             if regen and ok == 'bad':
                 if not identity: identity = self.getIdentityKey()