我配置了documentation's page的所有内容。
我的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!");
答案 0 :(得分:0)
您的配置看起来很好。您是否检查过您使用https://YourSubdomain.loggly.com/tokens而不是https://YourSubdomain.loggly.com/account/users/api/tokens的正确令牌?这两个令牌的使用是不同的,因此这可能是您没有在帐户中看到任何记录的原因。