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

Fix spurious messages printed to the console. #5538

Merged
merged 2 commits into from
Feb 20, 2023
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
Original file line number Diff line number Diff line change
@@ -1 +1 @@
micronautVersion=3.7.0-SNAPSHOT
micronautVersion=3.7.0
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,10 @@ public class ConsoleEditor extends CloneableEditor {
private CL cl;
private Lookup lookup;

public ConsoleEditor() {
this.lookup = Lookup.EMPTY;
}

public ConsoleEditor(CloneableEditorSupport support, Lookup lookup) {
super(support);
this.lookup = lookup;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -355,7 +355,7 @@ private static boolean isLifecycleParticipatnIgnored(AbstractMavenLifecycleParti
"LBL_Incomplete_Project_Desc=Partially loaded Maven project; try building it."
})
public static MavenProject getFallbackProject(File projectFile) throws AssertionError {
LOG.log(Level.INFO, "Creating fallback project for " + projectFile, new Throwable());
LOG.log(Level.FINE, "Creating fallback project for " + projectFile, new Throwable());
MavenProject newproject = new MavenProject();
newproject.setGroupId("error");
newproject.setArtifactId("error");
Expand Down