Skip to content

Commit 21461ea

Browse files
committed
adjust log verbosity to debug when no file-routes.json found
Fixes #2281
1 parent b1c692e commit 21461ea

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/java/endpoint/src/main/java/com/vaadin/hilla/route/RouteUnifyingIndexHtmlRequestListener.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ private void loadLatestDevModeFileRoutesJsonIfNeeded() {
119119
.getFrontendFolder().toPath().resolve("generated")
120120
.resolve("file-routes.json").toFile();
121121
if (!devModeFileRoutesJsonFile.exists()) {
122-
LOGGER.warn("Failed to find file-routes.json under {}",
122+
LOGGER.debug("No file-routes.json found under {}",
123123
deploymentConfiguration.getFrontendFolder().toPath()
124124
.resolve("generated"));
125125
return;

0 commit comments

Comments
 (0)