ENH: added logging while stopping the jails

This commit is contained in:
Yaroslav Halchenko 2011-11-21 19:35:14 -05:00
parent 9fa54cf233
commit fbce415622

View file

@ -126,6 +126,7 @@ class Server:
self.__lock.release()
def stopJail(self, name):
logSys.debug("Stopping jail %s" % name)
try:
self.__lock.acquire()
if self.isAlive(name):
@ -135,6 +136,7 @@ class Server:
self.__lock.release()
def stopAllJail(self):
logSys.info("Stopping all jails")
try:
self.__lock.acquire()
for jail in self.__jails.getAll():