StandardStreamsMode
public enum StandardStreamsMode
Governs when a ConsoleLogConfiguration directs log messages to
stdout and stderr.
-
Indicates that logging will be directed to
stdoutandstderronly as a fallback on platforms whereos_log()is not available.Declaration
Swift
case useAsFallback
-
Indicates that
stdoutandstderrwill always be used, regardless of whether logging usingos_log()is also occurring.Declaration
Swift
case useAlways
-
Indicates that
stdoutandstderrare to be used exclusively;os_log()will not be used even when it is available.Declaration
Swift
case useExclusively
View on GitHub
StandardStreamsMode Enum Reference