--- a/dbapi.py Fri Dec 05 17:25:45 2008 +0100
+++ b/dbapi.py Fri Dec 05 17:26:39 2008 +0100
@@ -74,7 +74,8 @@
return cnx
def connect(database=None, user=None, password=None, host=None,
- group=None, cnxprops=None, port=None, setvreg=True, mulcnx=True):
+ group=None, cnxprops=None, port=None, setvreg=True, mulcnx=True,
+ initlog=True):
"""Constructor for creating a connection to the CubicWeb repository.
Returns a Connection object.
@@ -97,9 +98,9 @@
vreg = repo.vreg
elif setvreg:
if mulcnx:
- vreg = MulCnxCubicWebRegistry(config)
+ vreg = MulCnxCubicWebRegistry(config, initlog=initlog)
else:
- vreg = CubicWebRegistry(config)
+ vreg = CubicWebRegistry(config, initlog=initlog)
vreg.set_schema(repo.get_schema())
else:
vreg = None