Editor/Wiring/Actions/LogLevel.cs
namespace Grains.RazorDesigner.Wiring;

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