Enum SapLogLevel
Severity levels for SapLogAction delegates.
These mirror LogLevel so that
custom delegates can map them to any logging framework without importing
Microsoft.Extensions.Logging in the consuming project.
public enum SapLogLevel
Fields
Debug = 0Detailed diagnostic information, e.g. every
FindByIdcall.Error = 3An error has occurred and will propagate to the caller.
Information = 1Normal operational events, e.g. session open/close and transaction changes.
Warning = 2Something unexpected but recoverable, e.g. popup detected or retry attempt.