Skip to content

Commit

Permalink
Merge pull request #42071 from brunobat/fix-analytics-log
Browse files Browse the repository at this point in the history
Avoid warning on analytics
  • Loading branch information
gsmet committed Jul 23, 2024
2 parents fc6adf5 + 1594c2b commit 6619648
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -342,7 +342,7 @@ public void close() throws IOException {
})) {
return scanner.nextLine();
} catch (Exception e) {
getLogger().warn("Failed to collect user input for analytics", e);
getLogger().debug("Failed to collect user input for analytics", e);
return "";
}
});
Expand Down
2 changes: 1 addition & 1 deletion devtools/maven/src/main/java/io/quarkus/maven/DevMojo.java
Original file line number Diff line number Diff line change
Expand Up @@ -444,7 +444,7 @@ public void close() throws IOException {
})) {
return scanner.nextLine();
} catch (Exception e) {
getLog().warn("Failed to collect user input for analytics", e);
getLog().debug("Failed to collect user input for analytics", e);
return "";
}
});
Expand Down

0 comments on commit 6619648

Please sign in to comment.