diff options
author | Madeline <46743919+MaddyUnderStars@users.noreply.github.com> | 2023-02-01 12:40:38 +1100 |
---|---|---|
committer | Madeline <46743919+MaddyUnderStars@users.noreply.github.com> | 2023-02-01 12:40:38 +1100 |
commit | b21d4285805d573903e2e69b1be2b1c13aee314e (patch) | |
tree | b50383f0e6fd829b2349d7076f4cec8a004e56a2 | |
parent | Rename postgresql to postgres -> fix silently failing migrations (diff) | |
download | server-b21d4285805d573903e2e69b1be2b1c13aee314e.tar.xz |
use print instead of console.log in client cache so it doesn't output weirdness
-rw-r--r-- | scripts/client.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/client.js b/scripts/client.js index 8cbc15b1..1320cb2c 100644 --- a/scripts/client.js +++ b/scripts/client.js @@ -260,5 +260,5 @@ const processFile = async (asset) => { } } - console.log("done"); + print("done"); })(); |