Skip to content
Snippets Groups Projects
Verified Commit 7712d2e1 authored by Xavier Robin's avatar Xavier Robin
Browse files

log: reduce verbosity

parent bb198577
Branches
Tags
No related merge requests found
......@@ -273,8 +273,8 @@ def _ParseArgs():
'--verbosity',
dest="verbosity",
type=int,
default=3,
help="Set verbosity level. Defaults to 3 (INFO).")
default=2,
help="Set verbosity level. Defaults to 2 (Script).")
parser.add_argument(
"--full-results",
......
......@@ -566,7 +566,7 @@ def _ParseArgs():
dest="verbosity",
type=int,
default=2,
help="Set verbosity level. Defaults to 3 (Script).")
help="Set verbosity level. Defaults to 2 (Script).")
parser.add_argument(
"--lddt-add-mdl-contacts",
......
......@@ -859,7 +859,7 @@ class LigandScorer:
new_chain = \
new_editor.InsertChain(new_chain_name)
break
LogScript("Moved ligand residue %s to new chain %s" % (
LogInfo("Moved ligand residue %s to new chain %s" % (
residue.qualified_name, new_chain.name))
else:
msg = \
......@@ -961,6 +961,7 @@ class LigandScorer:
LogWarning(msg)
LogScript("Computing pairwise scores for all %s x %s ligands" % shape)
for target_id, target_ligand in enumerate(self.target_ligands):
LogInfo("Analyzing target ligand %s" % target_ligand)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment