Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
- Increased functions emulator HTTPS body size limit to 32mb to match production. (#6201)
- Fixed Astro web framework bug when loading configuration for version `2.9.7` and above. (#6213)
- Increase Next.js config bundle timeout to 60 seconds. (#6214)
- Hides "shutdown requested via /\_\_/quitquitquit" log during functions deploy when `--debug` flag is not passed. (#6212)
2 changes: 1 addition & 1 deletion src/deploy/functions/runtimes/node/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ export class Delegate {
stdio: [/* stdin=*/ "ignore", /* stdout=*/ "pipe", /* stderr=*/ "pipe"],
});
childProcess.stdout?.on("data", (chunk: Buffer) => {
logger.info(chunk.toString("utf8"));
logger.debug(chunk.toString("utf8"));
});
childProcess.stderr?.on("data", (chunk: Buffer) => {
logger.error(chunk.toString("utf8"));
Expand Down
2 changes: 1 addition & 1 deletion src/deploy/functions/runtimes/python/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ export class Delegate implements runtimes.RuntimeDelegate {
);
const childProcess = runWithVirtualEnv(args, this.sourceDir, envWithAdminPort);
childProcess.stdout?.on("data", (chunk: Buffer) => {
logger.info(chunk.toString("utf8"));
logger.debug(chunk.toString("utf8"));
});
childProcess.stderr?.on("data", (chunk: Buffer) => {
logger.error(chunk.toString("utf8"));
Expand Down