File size: 392 Bytes
c82f5b7
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11

  app.get("/logs", (req, res) => {
    try {
      const logs = fs.readFileSync("/paperclip/bootstrap_logs.txt", "utf-8");
      res.status(200).set("Content-Type", "text/plain").send(logs);
    } catch (e) {
      res.status(200).set("Content-Type", "text/plain").send("Logs not available yet or bootstrap hasn't run. Please refresh in a few seconds.\n\nError: " + String(e));
    }
  });