Skip to content

Commit 9634532

Browse files
authored
Removed console.log (#9433)
1 parent 06e2743 commit 9634532

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
- Fixed issue where MCP server was blocked by console.log

src/appUtils.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -66,9 +66,6 @@ export async function detectApps(dirPath: string): Promise<App[]> {
6666
const adminAndWebApps = (
6767
await Promise.all(packageJsonFiles.map((p) => packageJsonToAdminOrWebApp(dirPath, p)))
6868
).flat();
69-
console.log("packageJsonFiles", packageJsonFiles);
70-
console.log("adminAndWebApps", adminAndWebApps);
71-
7269
const flutterAppPromises = await Promise.all(
7370
pubSpecYamlFiles.map((f) => processFlutterDir(dirPath, f)),
7471
);

0 commit comments

Comments
 (0)