我有一个通过FFI调用C库的应用程序。 我正在处理一些数据并大量打印。
在压力测试/重负荷过程中,一些打印件丢失,没有任何错误。我不能依靠我的应用程序。
为什么?我能做什么?不用花时间或抛出错误或其他任何东西,它只是不打印一些行。
我已经用angular.module('recordList').component('recordList', {
templateUrl: 'record-list/record-list.template.html',
controller: function RecordListController($http) {
var self = this;
// self.orderProp = 'age';
$http.get('http://blackvue.tozz.nl/camera/record/1/').then(function(response) {
self.recordings = response.data;
});
}
function DownloadFileController($file) {
$window.alert("Hi: " + $file);
}
})
和winston
进行了测试,看问题是否出自一个或另一个,但结果相同。
有没有办法监视它?