diff options
author | Alan Pearce | 2023-09-24 13:20:21 +0200 |
---|---|---|
committer | Alan Pearce | 2023-09-24 13:20:21 +0200 |
commit | 1828d352da665fffc73536d47018a79a81d55771 (patch) | |
tree | 0f96109001b853bec2db4807fd06603eff6576f1 /bin | |
parent | d00ba8dc1a7b7d46f9cc05272927dbcb81e09208 (diff) | |
download | website-1828d352da665fffc73536d47018a79a81d55771.tar.lz website-1828d352da665fffc73536d47018a79a81d55771.tar.zst website-1828d352da665fffc73536d47018a79a81d55771.zip |
Tweak logging verbosity
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/build.ts | 2 |
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, |