IBM MobileFirst 8.0.0 - WorkLight Logger 和 Analytics 不工作
IBM MobileFirst 8.0.0 - WorkLight Logger and Analytics not working
我已经在我的 ionic 应用程序中实现了 WL Logger 和 WL Analytics。但是日志(客户端+服务器端)没有在控制台上发布。
我的步骤是:-
1. 我在控制台上启用了 MFPLogger。
2. 使用
初始化 WL
enter code here
WL.Client.init({
onSuccess : function() {
WL.Logger.config({ capture: true });
WL.Analytics.init(this);
enter code here
WL.Analytics.addDeviceEventListener
(WL.Analytics.DeviceEvent.NETWORK);
WL.Analytics.addDeviceEventListener
(WL.Analytics.DeviceEvent.LIFECYCLE);
setInterval(function() {
WL.Logger.send();
WL.Analytics.send();
}, 6000);
console.log("Success WL");
},
onFailure : function(err){
}
});
//Client Side
WL.Logger.info(response)
WL.Analytics.log({type : message},message);
//End
//Server Side
MFP.Logger.info(logging_message);
//End
请帮忙
请试试这个。
WL.Client.init({
onSuccess : function() {
WL.Logger.config({ maxFileSize : 100000, // allow persistent storage of up to 100k of log data
// level : 'info', // at debug (and above) level
capture : true,
stringify: true // capture data passed to log API calls into persistent storage
});
WL.Analytics.enable().then(function (success) {
console.log(success);
}).fail(function (errObj) {
console.log(errObj);
});
setInterval(function() {
WL.Logger.send();
WL.Analytics.send();
}, 6000);
console.log("Success WL");
},
onFailure : function(err){
console.log("Failed WL");
WL.Logger.error('Caught an exception', err);
}
});
我已经在我的 ionic 应用程序中实现了 WL Logger 和 WL Analytics。但是日志(客户端+服务器端)没有在控制台上发布。
我的步骤是:- 1. 我在控制台上启用了 MFPLogger。 2. 使用
初始化 WLenter code here
WL.Client.init({
onSuccess : function() {
WL.Logger.config({ capture: true });
WL.Analytics.init(this);
enter code here
WL.Analytics.addDeviceEventListener
(WL.Analytics.DeviceEvent.NETWORK);
WL.Analytics.addDeviceEventListener
(WL.Analytics.DeviceEvent.LIFECYCLE);
setInterval(function() {
WL.Logger.send();
WL.Analytics.send();
}, 6000);
console.log("Success WL");
},
onFailure : function(err){
}
});
//Client Side
WL.Logger.info(response)
WL.Analytics.log({type : message},message);
//End
//Server Side
MFP.Logger.info(logging_message);
//End
请帮忙
请试试这个。
WL.Client.init({
onSuccess : function() {
WL.Logger.config({ maxFileSize : 100000, // allow persistent storage of up to 100k of log data
// level : 'info', // at debug (and above) level
capture : true,
stringify: true // capture data passed to log API calls into persistent storage
});
WL.Analytics.enable().then(function (success) {
console.log(success);
}).fail(function (errObj) {
console.log(errObj);
});
setInterval(function() {
WL.Logger.send();
WL.Analytics.send();
}, 6000);
console.log("Success WL");
},
onFailure : function(err){
console.log("Failed WL");
WL.Logger.error('Caught an exception', err);
}
});