about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rwxr-xr-xbin/build.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/build.ts b/bin/build.ts
index d6b6df9..2b76a94 100755
--- a/bin/build.ts
+++ b/bin/build.ts
@@ -21,7 +21,7 @@ if (!fs.existsSync("static")) {
   process.exit(1);
 }
 fs.readdirSync("static").map((file) => {
-  log.info(`Copying static/${file}`);
+  log.debug(`Copying static/${file}`);
   fs.cpSync(`static/${file}`, `public/${file}`, {
     dereference: true,
     recursive: true,