LoggerType Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
The ILogConsumer distinguishes between four categories of logs:
Value | Description |
---|---|
Runtime | Logs that are written by the Orleans run-time itself. This category should not be used by application code. |
Grain | Logs that are written by application grains. This category should be used by code that runs as Orleans grains in a silo. |
Application | Logs that are written by the client application. This category should be used by client-side application code. |
Provider | Logs that are written by providers. This category should be used by provider code. |
public enum LoggerType
type LoggerType =
Public Enum LoggerType
- Inheritance
-
LoggerType
Fields
Name | Value | Description |
---|---|---|
Runtime | 0 | |
Grain | 1 | |
Application | 2 | |
Provider | 3 |