/**
 * Used to categorize log messages by their severity and importance.
 */
export enum LogLevel {
  DEBUG,
  INFO,
  WARN,
  ERROR,
}
