From b2d8c4ef55219512206aad49a097129917d52f4b Mon Sep 17 00:00:00 2001 From: Isaac Abadi Date: Thu, 30 Sep 2021 08:42:20 -0600 Subject: [PATCH] Disabled PM2 logging to $HOME/.pm2 --- backend/pm2.config.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/backend/pm2.config.js b/backend/pm2.config.js index 42e78c5..af9fea2 100644 --- a/backend/pm2.config.js +++ b/backend/pm2.config.js @@ -2,6 +2,8 @@ module.exports = { apps : [{ name : "YoutubeDL-Material", script : "./app.js", - watch : "placeholder" + watch : "placeholder", + out_file: "/dev/null", + error_file: "/dev/null" }] } \ No newline at end of file