Log.Filter
static LogLevel Filter{ set }
Description
What’s the lowest level of severity logs to display on the console? Default is LogLevel.Info. This property can safely be set before SK initialization.
Examples
Show everything that StereoKit logs!
Log.Filter = LogLevel.Diagnostic;
Or, only show warnings and errors:
Log.Filter = LogLevel.Warning;
Found an issue with these docs, or have some additional questions? Create an Issue on Github!