chiark / gitweb /
Don't use paramiko with DEBUG
authorDaniel Martí <mvdan@mvdan.cc>
Sat, 21 Nov 2015 01:24:28 +0000 (17:24 -0800)
committerDaniel Martí <mvdan@mvdan.cc>
Sat, 21 Nov 2015 01:35:34 +0000 (17:35 -0800)
It outputs way, way too much info. Thousands of lines only when copying
the files over, which is not useful at all.

fdroidserver/build.py

index a627d58c824e054db4395fa39a0aef114b3619ea..45d9d4291bf92d7c1b9dcfde2b8d2e20ca1fb4ee 100644 (file)
@@ -253,7 +253,7 @@ def build_server(app, thisbuild, vcs, build_dir, output_dir, force):
     except NameError:
         raise BuildException("Paramiko is required to use the buildserver")
     if options.verbose:
-        logging.getLogger("paramiko").setLevel(logging.DEBUG)
+        logging.getLogger("paramiko").setLevel(logging.INFO)
     else:
         logging.getLogger("paramiko").setLevel(logging.WARN)