[Zope3-checkins] CVS: Zope3/lib/python/ZEO/tests - testZEO.py:1.32
Tim Peters
tim.one@comcast.net
Thu, 19 Dec 2002 15:39:22 -0500
Update of /cvs-repository/Zope3/lib/python/ZEO/tests
In directory cvs.zope.org:/tmp/cvs-serv28223/lib/python/ZEO/tests
Modified Files:
testZEO.py
Log Message:
More logging.
=== Zope3/lib/python/ZEO/tests/testZEO.py 1.31 => 1.32 ===
--- Zope3/lib/python/ZEO/tests/testZEO.py:1.31 Mon Dec 16 16:16:38 2002
+++ Zope3/lib/python/ZEO/tests/testZEO.py Thu Dec 19 15:39:22 2002
@@ -21,9 +21,7 @@
import asyncore
import tempfile
import unittest
-
-# Zope/ZODB3 imports
-import zLOG
+import logging
# ZODB test support
import ZODB
@@ -126,7 +124,7 @@
"""Test ZEO backed by a FileStorage."""
def setUp(self):
- zLOG.LOG("testZEO", zLOG.INFO, "setUp() %s" % self.id())
+ logging.info("testZEO: setUp() %s", self.id())
zeoport, adminaddr, pid = forker.start_zeo_server(self.getConfig())
self._pids = [pid]
self._servers = [adminaddr]