0.1.0 • Published 2 years ago

@txxx/cloud-logger v0.1.0

Weekly downloads
-
License
ISC
Repository
-
Last release
2 years ago

云函数日志辅助

使用方法

const { log, miniPromgram, web, wechatWeb, cloudFunction, wxwork } = require("@txcode/cloud-logger");

log.debug(1,{from:web}) //{ from: '网页', content: 1, debug: true }
log.debug('xx') //{ content: 'xx', debug: true }
log.debug([1, 2]) //{ content: [ 1, 2 ], debug: true }
log.debug({ a: 1, b: 2 },{from:wechatWeb,appid:'daf'}) //{ appid: 'daf', from: '微信公众号', a: 1, b: 2, debug: true }
log.info('xx',{appid:'asdfa'}) //{ appid: 'asdfa', content: 'xx' }
log.error([2,2],{from:miniPromgram}) //{ from: '小程序', content: [ 2, 2 ] }