Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Attempt to do type regeneration turned into an error condition instead of being logged #7155

Merged
merged 4 commits into from
Jul 11, 2023
Merged
Changes from 1 commit
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
Original file line number Diff line number Diff line change
Expand Up @@ -326,12 +326,12 @@ public Optional<Path> codegenJavaFilerOut(TypeName typeName,
}
return Optional.of(Path.of(javaSrc.toUri()));
} catch (FilerException x) {
messager.log("Failed to write java file: " + x);
messager.error("Failed to write java file: " + x, x);
tomas-langer marked this conversation as resolved.
Show resolved Hide resolved
throw new RuntimeException(x);
} catch (Exception x) {
messager.warn("Failed to write java file: " + x, x);
messager.error("Failed to write java file: " + x, x);
throw new RuntimeException(x);
}

return Optional.empty();
}

/**
Expand Down