spout

Results 5 comments of spout

I have the same problem, I have fixed the bug: see that : https://github.com/nevill/zongji/pull/21

you take the wrong arguments into tagg.create() function, you should use it like this: tagg.create(func, opt, cb) tagg.create not return tagg object,and it's not promise mode

listen EACCES 是端口无法监听的问题

同意@btspoony 所说,确实有这个问题,目前我这边0.8.0也发现自定义日志无法写入,确实由于加载的pomelo-logger包不是一个所致,建议在app里增加一个logger的api,这样就方便我们打日志了。 目前我解决方法是修改pomelo源码的`\node_modules\pomelo\lib\util\log.js`下增加 ``` /** * Configure pomelo logger */ module.exports.configure = function(app, filename) { var serverId = app.getServerId(); var base = app.getBase(); logger.configure(filename, {serverId: serverId, base: base}); app.logger =...