diff options
author | 2024-12-16 16:25:27 -0500 | |
---|---|---|
committer | 2024-12-16 16:25:27 -0500 | |
commit | 95795f85dbd85ff29ee2ff4860d018fd4e9bcf8f (patch) | |
tree | 47789b54098f9239165ed3ab816b6e06e8ea48e4 | |
parent | a44cfb874a6f066214e851c98a410d89c6866992 (diff) | |
download | astro-95795f85dbd85ff29ee2ff4860d018fd4e9bcf8f.tar.gz astro-95795f85dbd85ff29ee2ff4860d018fd4e9bcf8f.tar.zst astro-95795f85dbd85ff29ee2ff4860d018fd4e9bcf8f.zip |
Remove debug logging from output (#12756)
-rw-r--r-- | .changeset/soft-cows-buy.md | 5 | ||||
-rw-r--r-- | packages/astro/src/core/build/static-build.ts | 2 |
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) { |