Change maxium verbosity setting from 0 to logging.DEBUG.
authorW. Trevor King <wking@drexel.edu>
Thu, 16 Feb 2012 11:56:37 +0000 (06:56 -0500)
committerW. Trevor King <wking@drexel.edu>
Thu, 16 Feb 2012 11:56:37 +0000 (06:56 -0500)
bin/update-copyright.py

index cb186f8b281c3d523815cd77adea7506af7a7330..9394243025e16347dcdeab9696f0c13b9b19ec9a 100755 (executable)
@@ -59,7 +59,7 @@ if __name__ == '__main__':
                  action='count', help='Increment verbosity')
     options,args = p.parse_args()
 
-    _LOG.setLevel(max(0, _logging.ERROR - 10*options.verbose))
+    _LOG.setLevel(max(_logging.DEBUG, _logging.ERROR - 10*options.verbose))
 
     project = Project()
     project.load_config(open(options.config, 'r'))