Skip to content

LogLevel

Maxime ROUFFET edited this page Mar 12, 2023 · 6 revisions

Log levels are used to filter logs by severity level.
The available levels are available through the enum SA::LogLevel with the values:

Normal

The default level, used for fast debugging.

Info

Initialization/Uninitialization, resource creation/destruction information logging.

Warning

Code generated a warning which might cause a potential issue: implementation should be checked.

Error

Error as occurred: serious debugging is required.

AssertSuccess

Assertion test resulted in success. Exception not thrown but still log the exception to access performed test as a string.

AssertFailure

Assertion test resulted in failure. Force log exception despite any parameters before throw.