LogType
namespace PhalconKit\Models\Enums;
enum LogType: string
Cases
| Case | Value |
|---|---|
CRITICAL | "critical" |
ALERT | "alert" |
ERROR | "error" |
WARNING | "warning" |
NOTICE | "notice" |
INFO | "info" |
DEBUG | "debug" |
EMERGENCY | "emergency" |
OTHER | "other" |
Use cases() to list cases. Use from() or tryFrom() to resolve a backing value.