Interface ILogCategory
Used to separate logging into groups that can be customized or toggled.
Namespace: IdleKit.Core
Assembly: cs.temp.dll.dll
Syntax
public interface ILogCategory
Properties
HexColorDarkTheme
The color of the category tag when using Dark Theme in the Unity Editor.
Declaration
string HexColorDarkTheme { get; }
Property Value
Type | Description |
---|---|
String |
HexColorLightTheme
The color of the category tag when using Light Theme in the Unity Editor.
Declaration
string HexColorLightTheme { get; }
Property Value
Type | Description |
---|---|
String |
Id
The category ID. Used as a lookup. Must be unique.
Declaration
string Id { get; }
Property Value
Type | Description |
---|---|
String |
Tag
This is prepended to logs made in this category.
Declaration
string Tag { get; }
Property Value
Type | Description |
---|---|
String |