Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

common_cfg: Tweak log.outputs entry #4317

Merged
merged 2 commits into from Mar 19, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
7 changes: 6 additions & 1 deletion datalad/interface/common_cfg.py
Expand Up @@ -217,7 +217,12 @@
},
'datalad.log.outputs': {
'ui': ('question', {
'title': 'Used to control whether both stdout and stderr of external commands execution are logged in detail (at DEBUG level)'}),
'title': 'Whether to log stdout and stderr for executed commands',
'text': 'When enabled, setting the log level to 5 '
'should catch all execution output, '
'though some output may be logged at higher levels'}),
'default': False,
'type': EnsureBool(),
},
'datalad.log.timestamp': {
'ui': ('yesno', {
Expand Down