logValueTypeValueOf function
- int value
Implementation
NUILogValueType logValueTypeValueOf(int value){
switch(value){
case 1000: return NUILogValueType.AUDIT_TRAIL;
case 1002: return NUILogValueType.CRASH;
case 1004: return NUILogValueType.ERROR;
case 1006: return NUILogValueType.WARNING;
case 1008: return NUILogValueType.INFO;
case 1010: return NUILogValueType.DEBUG;
default: return NUILogValueType.OTHER;
}
}