Commit 435b5786 by Иван Кубота

debug

parent b4fa4276
...@@ -282,7 +282,11 @@ module.exports = { ...@@ -282,7 +282,11 @@ module.exports = {
}, },
summary: 'monitordata', summary: 'monitordata',
fn: async function(args, req, res){ fn: async function(args, req, res){
return log.logging.filter(l=>l.start>args.start);
return log.logging.filter(l=>{
console.log(l.start, '>',args.start);
return l.start>args.start
});
} }
} }
}; };
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment