Enum LogOutput
Determines the way the server can write log messages. This enumerator is for giving permissions for certain contexts to be able or not to write to the server logs, such as AccessLogsStream and ErrorsLogsStream.
[Flags]
public enum LogOutput
Fields
AccessLog = 1
Determines that the context or the route can write log messages only to the access logs through AccessLogsStream.
Both = AccessLog | ErrorLog
Determines that the context or the route can write log messages to both error and access logs.
ErrorLog = 2
Determines that the context or the route can write error messages only to the error logs through ErrorsLogsStream.
None = 0
Determines that the context or the route cannot write any log messages.