Skip to content

Commit 1057889

Browse files
Correct logging levels, properly this time
1 parent 814b7d2 commit 1057889

File tree

2 files changed

+15
-9
lines changed

2 files changed

+15
-9
lines changed

screen19/minimum_exposure.py

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -64,12 +64,15 @@
6464

6565
phil_scope = iotbx.phil.parse(
6666
"""
67-
verbosity = 1
68-
.type = int(value_min=1)
67+
verbosity = 0
68+
.type = int(value_min=0)
6969
.caption = 'Verbosity level of log output'
7070
.help = "Possible values:\n"
71-
"\t• 1: Info log output to stdout/logfile\n"
72-
"\t• 2: Info & debug log output to stdout/logfile"
71+
"\t• 0: Info log output to stdout/logfile\n"
72+
"\t• 1: Info log output to stdout/logfile, logfile contains timing"
73+
"information\n"
74+
"\t• 2: Info & debug log output to stdout/logfile, logfile contains"
75+
"timing information"
7376
minimum_exposure
7477
.caption = 'Parameters for the calculation of the lower exposure bound'
7578
{

screen19/screen.py

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
Target I/σ and target d (in Ångström) can be set using the parameters
1919
'min_i_over_sigma' and 'desired_d'. One can set multiple values of the latter.
2020
21-
By default the disorder parameter fit is conducted on the
21+
By default, the disorder parameter fit is conducted on the
2222
integrated data. This ought to provide a reasonably true fit, but requires
2323
an integration step, which can take some time. You can achieve a quicker,
2424
dirtier answer by fitting to the indexed data (i.e. only the stronger
@@ -93,12 +93,15 @@
9393

9494
phil_scope = iotbx.phil.parse(
9595
"""
96-
verbosity = 1
97-
.type = int(value_min=1)
96+
verbosity = 0
97+
.type = int(value_min=0)
9898
.caption = 'Verbosity level of log output'
9999
.help = "Possible values:\n"
100-
"\t• 1: Info log output to stdout/logfile\n"
101-
"\t• 2: Info & debug log output to stdout/logfile"
100+
"\t• 0: Info log output to stdout/logfile\n"
101+
"\t• 1: Info log output to stdout/logfile, logfile contains timing"
102+
"information\n"
103+
"\t• 2: Info & debug log output to stdout/logfile, logfile contains"
104+
"timing information"
102105
103106
output
104107
.caption = 'Options to control the output files'

0 commit comments

Comments
 (0)