Browse Source

getlog

master
zeus 3 years ago
parent
commit
492ee9810f
  1. 6
      swarmlab-app/src/run/app.js

6
swarmlab-app/src/run/app.js

@ -289,13 +289,13 @@ app.get('/get_log', [
//check('llo').isBase64()
],
cors(corsOptions), (req, res, next) => {
(async() => {
var RES = new Object();
RES.token = req.query["token"]
RES.start = req.query["start"]
RES.end = req.query["end"]
RES.filter = req.query["filter"]
(async() => {
var isvalid = await checkToken(RES.token);
if(isvalid.action == 'ok'){
console.log("Authserver ok " + RES.token);
@ -318,7 +318,7 @@ if(RES.error == 'ok'){
//db.collection('log', onCollection);
console.log(JSON.stringify('mongo connected'))
db.collection('logs').find({}, {})
db.collection('logs').find({}, {}).toArray()
.then(item => {
console.log(item)
RES.error_msg = "ok"

Loading…
Cancel
Save