1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-11-04 22:40:12 +01:00

Don't use paramiko with DEBUG

It outputs way, way too much info. Thousands of lines only when copying
the files over, which is not useful at all.
This commit is contained in:
Daniel Martí 2015-11-20 17:24:28 -08:00
parent 326e299e15
commit 7e82b044fe

View 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)