Probot 日志未出现

Probot logs do not appear

我正在尝试记录我的 probot 应用程序的流程,但它们没有出现在我的终端中。 我通过 运行 npx create-probot-app my-first-app 设置了样板项目并选择了 basic-ts 项目。

我的 index.ts 文件看起来像这样 -

import { Probot } from "probot";

export = (app: Probot) => {
  app.log.info("Yay, my app is loaded");
  app.on("issues.opened", async (context) => {
    context.log.info("momo-issue")
    const issueComment = context.issue({
      body: "Thanks for opening this issue!",
    });
    await context.octokit.issues.createComment(issueComment);
  });
};

应用程序按预期运行,打开问题提示机器人创建评论,但我添加的日志仍然丢失。
重启服务器多次,还是看不到日志。

知道这里缺少什么吗?

日志没有出现,因为我没有重建我的应用程序。
一旦我 运行 yarn build 日志开始显示...