Enum BackgroundTaskMessageType
Describes types of messages returned by background tasks.
Namespace: Mediachase.Commerce.BackgroundTasks
Assembly: Mediachase.Commerce.dll
Version: 13.30.0Syntax
public enum BackgroundTaskMessageType
Fields
| Name | Description |
|---|---|
| Debug | The message contains debugging output. |
| Error | The message indicates overall failure. Failure should only be used for the final message in the log. |
| Info | The message is informational. |
| Progress | The message is a transient progress message. Progress messages will be immediately overwritten by the next message, and will not be persisted in the log. |
| Success | The message indicates overall success. Success should only be used for the final message in the log. |
| Warning | The message contains a warning. |