本文整理匯總了Java中ch.qos.logback.classic.Level.valueOf方法的典型用法代碼示例。如果您正苦於以下問題:Java Level.valueOf方法的具體用法?Java Level.valueOf怎麽用?Java Level.valueOf使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類ch.qos.logback.classic.Level
的用法示例。
在下文中一共展示了Level.valueOf方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: parseRegularLine
import ch.qos.logback.classic.Level; //導入方法依賴的package包/類
private void parseRegularLine(String line, LogEntry precessor) throws LogParserException {
String[] tokens = line.split(" ", 3);
if (tokens.length == 3) {
String dateString = tokens[0];
DateTimeFormatter formatter = DateTimeFormatter.ofPattern(PersistentAppender.DATE_FORMAT);
ZonedDateTime zonedDateTime = ZonedDateTime.parse(dateString, formatter);
timestamp = zonedDateTime.toInstant().toEpochMilli();
String levelString = tokens[1];
level = Level.valueOf(levelString);
message = tokens[2];
if (precessor != null) {
index = precessor.index + 1;
} else {
index = 0;
}
} else {
throw new LogParserException(line);
}
}
示例2: convert
import ch.qos.logback.classic.Level; //導入方法依賴的package包/類
@Override
public Level convert(String value) {
Level convertedValue = Level.valueOf(value);
if (convertedValue == null) {
throw new ParameterException("Value " + value + "can not be converted to a logging level.");
}
return convertedValue;
}