[c-c start repo] config log's threshold is upper case while option accepts lower case. This break c-c start of repository instances.
--- a/server/serverctl.py Mon Jul 19 10:10:20 2010 +0200
+++ b/server/serverctl.py Mon Jul 19 10:13:01 2010 +0200
@@ -254,7 +254,7 @@
command = ['cubicweb-ctl start-repository ']
if config.debugmode:
command.append('--debug')
- command.append('--loglevel %s' % config['log-threshold'])
+ command.append('--loglevel %s' % config['log-threshold'].lower())
command.append(config.appid)
os.system(' '.join(command))