intValue property

int intValue

Implementation

int get intValue {
  switch(this) {
    case LEVELS.FATAL: return 1;
    case LEVELS.ERROR: return 2;
    case LEVELS.WARN: return 3;
    case LEVELS.INFO: return 4;
    case LEVELS.DEBUG: return 5;
    default: return 6;
  }
}