@lx-frontend/real-time-logger
v1.0.0-beta.2
Published
Real-time reporting of WeChat backend log toolkit
Downloads
17
Readme
@lx-frontend/real-time-logger
小程序实时上报日志工具包 🔧
Usage
import { InitLogger } from "@lx-frontend/real-time-logger";
const { log, warn, error } = InitLogger({ enabled: true })
log(
{hey: 'man', hello: 'world'},
[{a: 1}, {b: 2}],
[4, 5, 6],
'test123567',
)
warn(
{hey: 'man', hello: 'world'},
[{a: 1}, {b: 2}],
[4, 5, 6],
'test123567',
)
error(
{hey: 'man', hello: 'world'},
[{a: 1}, {b: 2}],
[4, 5, 6],
'test123567',
)
Problem
‼️目前已知的一些微信后台过滤上报filterMsg信息 过滤不了的问题
带有特殊字符 (e.g. http://img4.bitautoimg.com/bt/car/default/images/logo/masterbrand/png/100/m_57_100.png)
中文字符 (e.g. 仁孚香港专场/2021年08月16号)
时间格式 (e.g. 2021-08-16 00:00:00 可与问题1归为一类 但考虑到这类可以单独进行兼容 所以独立出来了)
带空格的信息 (e.g. Zung Fu Outlet/金龙 金龙9米公路客车 211马力 目前通过去除空格兼容了这种情况)