all repos — website @ 1828d352da665fffc73536d47018a79a81d55771

My website

Tweak logging verbosity
Alan Pearce alan@alanpearce.eu
Sun, 24 Sep 2023 13:20:21 +0200
commit

1828d352da665fffc73536d47018a79a81d55771

parent

d00ba8dc1a7b7d46f9cc05272927dbcb81e09208

1 files changed, 1 insertions(+), 1 deletions(-)

jump to
M bin/build.tsbin/build.ts
@@ -21,7 +21,7 @@ log.error("static directory not found");   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,