You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

LogSeverity.cs 184 B

123456789101112
  1. namespace Discord
  2. {
  3. public enum LogSeverity
  4. {
  5. Critical = 0,
  6. Error = 1,
  7. Warning = 2,
  8. Info = 3,
  9. Verbose = 4,
  10. Debug = 5
  11. }
  12. }