Log console with channels
Install PrismLog with Unity Package Manager
https://github.com/KevinReilhac/PrismLog.git#upm
- Setup your channels in your project settings and generate your enum.
- Open Open Prism Log Console
Shift + Alt + C
PConsole.Log("Default Log"); //Print a log in the default channel
PConsole.LogWarning("UI LogWarning", PrismLogChanel.UI); //Print a warning in the UI channel
PConsole.LogError("AI LogError", PrismLogChanel.AI); //Print an error in the AI channel
//You can also use a logtype as third parameter
PConsole.Log("Default Log", PrismLogChanel.PlayerController, LogType.Warning); //Print a warning in the PlayerController channel