本文整理汇总了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;
}