0

我配置了有关文档页面的所有内容。

我的 Node 应用程序没有收到任何错误,但是我的应用程序没有收到任何登录日志。我不知道问题出在哪里。

我在 config.js 中的代码:

var winston  = require('winston');
require('winston-loggly-bulk');

winston.add(winston.transports.Loggly, {
    inputToken: "aToken",
    subdomain: "aSubDomain",
    tags: ["Winston-NodeJS"],
    json:true
});

winston.log('info',"Hello World from Node.js!");
4

1 回答 1

0

你的配置看起来不错。您是否检查过您使用的是来自https://YourSubdomain.loggly.com/tokens而不是来自https://YourSubdomain.loggly.com/account/users/api/tokens的正确令牌?两种令牌的使用方式不同,因此这可能是您在帐户中看不到任何日志的原因。

于 2018-06-02T17:11:03.003 回答