Editor/Wiring/Actions/LogLevel.cs

Enum type used by the editor wiring to represent log severity. Maps to Sandbox.Log.Info, Warning, and Error when a log action is emitted.

namespace Grains.RazorDesigner.Wiring;

// Maps directly onto Sandbox.Log.{Info,Warning,Error} when the LogAction is emitted.
public enum LogLevel
{
    Info,
    Warning,
    Error,
}