We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9f4fb10 commit b493bf8Copy full SHA for b493bf8
flow-server/src/main/java/com/vaadin/flow/server/frontend/NodeResolver.java
@@ -147,6 +147,7 @@ private ActiveNodeInstallation tryUseGlobalNode() {
147
String nodeCommand = FrontendUtils.isWindows() ? "node.exe" : "node";
148
File nodeExecutable = frontendToolsLocator.tryLocateTool(nodeCommand)
149
.orElse(null);
150
+ log.info("Located global node {}", nodeExecutable);
151
152
if (nodeExecutable == null) {
153
return null;
0 commit comments