summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Matthew Phillips <matthew@skypack.dev> 2024-12-16 16:25:27 -0500
committerGravatar GitHub <noreply@github.com> 2024-12-16 16:25:27 -0500
commit95795f85dbd85ff29ee2ff4860d018fd4e9bcf8f (patch)
tree47789b54098f9239165ed3ab816b6e06e8ea48e4
parenta44cfb874a6f066214e851c98a410d89c6866992 (diff)
downloadastro-95795f85dbd85ff29ee2ff4860d018fd4e9bcf8f.tar.gz
astro-95795f85dbd85ff29ee2ff4860d018fd4e9bcf8f.tar.zst
astro-95795f85dbd85ff29ee2ff4860d018fd4e9bcf8f.zip
Remove debug logging from output (#12756)
-rw-r--r--.changeset/soft-cows-buy.md5
-rw-r--r--packages/astro/src/core/build/static-build.ts2
2 files changed, 5 insertions, 2 deletions
diff --git a/.changeset/soft-cows-buy.md b/.changeset/soft-cows-buy.md
new file mode 100644
index 000000000..ce759a29e
--- /dev/null
+++ b/.changeset/soft-cows-buy.md
@@ -0,0 +1,5 @@
+---
+'astro': patch
+---
+
+Remove debug logging from build
diff --git a/packages/astro/src/core/build/static-build.ts b/packages/astro/src/core/build/static-build.ts
index ccd0994d6..0535aaa7a 100644
--- a/packages/astro/src/core/build/static-build.ts
+++ b/packages/astro/src/core/build/static-build.ts
@@ -422,8 +422,6 @@ async function ssrMoveAssets(opts: StaticBuildOptions) {
cwd: fileURLToPath(serverAssets),
});
- console.log('FILES2', files);
-
if (files.length > 0) {
await Promise.all(
files.map(async function moveAsset(filename) {