# HG changeset patch # User Sylvain Thénault # Date 1266486890 -3600 # Node ID 1b46d5ece0d549e5dd3d311b9518ffdfb7de9ced # Parent 994c70fe5006c64caf88e4a0f0de4bfc9db5642f turn default logging threshold to warning (we usually want them), and log 'no schema for eid' pb using warning instead of error, so we see them in logs but not during migration diff -r 994c70fe5006 -r 1b46d5ece0d5 cwconfig.py --- a/cwconfig.py Thu Feb 18 09:26:04 2010 +0100 +++ b/cwconfig.py Thu Feb 18 10:54:50 2010 +0100 @@ -236,7 +236,7 @@ options = ( ('log-threshold', {'type' : 'string', # XXX use a dedicated type? - 'default': 'ERROR', + 'default': 'WARNING', 'help': 'server\'s log level', 'group': 'main', 'inputlevel': 1, }), diff -r 994c70fe5006 -r 1b46d5ece0d5 hooks/syncschema.py --- a/hooks/syncschema.py Thu Feb 18 09:26:04 2010 +0100 +++ b/hooks/syncschema.py Thu Feb 18 10:54:50 2010 +0100 @@ -690,7 +690,7 @@ erschema = self.session.vreg.schema.schema_by_eid(self.eid) except KeyError: # duh, schema not found, log error and skip operation - self.error('no schema for %s', self.eid) + self.warning('no schema for %s', self.eid) return perms = list(erschema.action_permissions(self.action)) if hasattr(self, 'group_eid'): @@ -717,7 +717,7 @@ erschema = self.session.vreg.schema.schema_by_eid(self.eid) except KeyError: # duh, schema not found, log error and skip operation - self.error('no schema for %s', self.eid) + self.warning('no schema for %s', self.eid) return if isinstance(erschema, RelationSchema): # XXX 3.6 migration return