Skip to content

Commit

Permalink
Change log level of missing static file message to DEBUG
Browse files Browse the repository at this point in the history
  • Loading branch information
barchetta committed Oct 30, 2024
1 parent 9af787f commit 5e19310
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ public final class OpenApiFeature implements Weighted, ServerFeature, RuntimeTyp
}
if (defaultContent == null) {
defaultContent = "";
LOGGER.log(Level.WARNING, "Static OpenAPI file not found, checked: {0}", DEFAULT_FILE_PATHS);
LOGGER.log(Level.DEBUG, "Static OpenAPI file not found, checked: {0}", DEFAULT_FILE_PATHS);
}
}
content = defaultContent;
Expand Down

0 comments on commit 5e19310

Please sign in to comment.