text.append("/");
text.append(event.getThreadName());
}
if (mask.contains(FILE_NAME)) {
final LocationInfo location = event.getLocationInformation();
text.append("/");
text.append(location.getFileName());
}
if (mask.contains(CLASS_NAME)) {
final LocationInfo location = event.getLocationInformation();
text.append("/");
text.append(location.getClassName());
}
if (mask.contains(METHOD_NAME)) {
final LocationInfo location = event.getLocationInformation();
text.append("/");
text.append(location.getMethodName());
}
if (mask.contains(LINE_NUMBER)) {
final LocationInfo location = event.getLocationInformation();
text.append("/");
text.append(location.getLineNumber());
}
if (mask.contains(STACK_TRACE)) {
final String[] stackArray = event.getThrowableStrRep();
if (stackArray != null) {