Skip to content

Commit

Permalink
Merge branch 'master' into doc/add-note-P-option
Browse files Browse the repository at this point in the history
  • Loading branch information
vkarak authored Nov 2, 2023
2 parents eba81ab + 6b2988c commit cab08b9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 4 additions & 0 deletions docs/config_reference.rst
Original file line number Diff line number Diff line change
Expand Up @@ -1079,6 +1079,7 @@ All logging handlers share the following set of common attributes:
``%(check_prebuild_cmds)s``, The value of the :attr:`~reframe.core.pipeline.RegressionTest.prebuild_cmds` attribute.
``%(check_prefix)s``, The value of the :attr:`~reframe.core.pipeline.RegressionTest.prefix` attribute.
``%(check_prerun_cmds)s``, The value of the :attr:`~reframe.core.pipeline.RegressionTest.prerun_cmds` attribute.
``%(check_result)s``, The result of the test (``pass`` or ``fail``).
``%(check_readonly_files)s``, The value of the :attr:`~reframe.core.pipeline.RegressionTest.readonly_files` attribute.
``%(check_short_name)s``, The value of the :attr:`~reframe.core.pipeline.RegressionTest.short_name` attribute.
``%(check_sourcepath)s``, The value of the :attr:`~reframe.core.pipeline.RegressionTest.sourcepath` attribute.
Expand Down Expand Up @@ -1116,6 +1117,9 @@ All logging handlers share the following set of common attributes:
.. versionchanged:: 3.11.0
Limit the number of attributes that can be logged. User attributes or properties must be explicitly marked as "loggable" in order to be selectable for logging.

.. versionadded:: 4.0
The ``%(check_result)s`` specifier is added.

.. versionadded:: 4.3
The ``%(check_#ALL)s`` special specifier is added.

Expand Down
4 changes: 0 additions & 4 deletions reframe/core/logging.py
Original file line number Diff line number Diff line change
Expand Up @@ -789,13 +789,9 @@ def __init__(self, logger=None, check=None):
'__rfm_check__': check,
'__rfm_loggable_attrs__': [],
'check_name': 'reframe',
'check_jobid': None,
'check_job_completion_time': None,
'check_job_completion_time_unix': None,
'check_info': 'reframe',
'check_system': None,
'check_partition': None,
'check_environ': None,
'check_perf_var': None,
'check_perf_value': None,
'check_perf_ref': None,
Expand Down

0 comments on commit cab08b9

Please sign in to comment.