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 a6056d2 commit 01e1549Copy full SHA for 01e1549
server/src/server.ts
@@ -1642,7 +1642,11 @@ async function onMessage(msg: p.Message) {
1642
// The type says it's NormalizedPath, so we ensure it actually is
1643
let projectRootPath = utils.normalizePath(msg_.projectRootPath);
1644
if (projectRootPath == null) {
1645
- // Should never happen, but handle gracefully
+ // Should never happen, but handle gracefully and log a warning
1646
+ console.warn(
1647
+ "[ReScript Language Server] Failed to normalize projectRootPath from clientSentBuildAction:",
1648
+ msg_.projectRootPath
1649
+ );
1650
return;
1651
}
1652
// TODO: sometime stale .bsb.lock dangling
0 commit comments