Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ jobs:
- uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 11
java-version: 17
- run: java -version
- run: .kokoro/build.sh
env:
Expand Down
2 changes: 1 addition & 1 deletion .kokoro/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ test)
RETURN_CODE=$?
;;
lint)
mvn com.coveo:fmt-maven-plugin:check -B -ntp
mvn com.spotify.fmt:fmt-maven-plugin:check -B -ntp
RETURN_CODE=$?
;;
javadoc)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -538,19 +538,19 @@ static void writeStack(IThrowableProxy throwProxy, String prefix, StringBuilder
*/
private static Severity severityFor(Level level) {
switch (level.toInt()) {
// TRACE
// TRACE
case 5000:
return Severity.DEBUG;
// DEBUG
// DEBUG
case 10000:
return Severity.DEBUG;
// INFO
// INFO
case 20000:
return Severity.INFO;
// WARNING
// WARNING
case 30000:
return Severity.WARNING;
// ERROR
// ERROR
case 40000:
return Severity.ERROR;
default:
Expand Down