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 | 72c0319a9fcc63b0b569ac5397129e1c4978599b (patch) | |
tree | eca3e0d00bce79d04d4dd86f124cf061a51b6981 | |
parent | Rename postgresql to postgres -> fix silently failing migrations (diff) | |
download | server-72c0319a9fcc63b0b569ac5397129e1c4978599b.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"); })(); |