日志信息发送到日志服务接口 可配置日志服务接口地址 可配置本地浏览器日志打印等级 可配置发送日志服务接口等级
日志信息发送到日志服务接口
可配置日志服务接口地址
可配置本地浏览器日志打印等级
可配置发送日志服务接口等级
require(['js-log'], function (jsLog) { jsLog.config({ level: 'debug', url: '/v1/sysmgr/log/c0002.json' }); jsLog.debug('test'); if (jsLog.isDebugEnabled()) { alert('isDebugEnabled === true'); } });
var jsLog = require('js-log'); jsLog.config({ level: 'debug', url: '/v1/sysmgr/log/c0002.json' }); jsLog.debug('test'); if (jsLog.isDebugEnabled()) { alert('isDebugEnabled === true'); }
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>test</title> </head> <body> <script src="../bower_components/jquery/dist/jquery.min.js"></script> <script src="../dist/js/js-log.min.js"></script> <script> jsLog.config({ level: 'debug', url: '/v1/sysmgr/log/c0002.json' }); jsLog.debug('test'); if (jsLog.isDebugEnabled()) { alert('isDebugEnabled === true'); } </script> </body> </html>