Commit b2a2b9d2056ecdd0288718d316c213dd6c2c445f
1 parent
3ead7339
Exists in
master
Showing
32 changed files
with
1273 additions
and
0 deletions
Show diff stats
@@ -0,0 +1,13 @@ | @@ -0,0 +1,13 @@ | ||
1 | +# EditorConfig helps developers define and maintain consistent | ||
2 | +# coding styles between different editors and IDEs | ||
3 | +# http://editorconfig.org | ||
4 | + | ||
5 | +root = true | ||
6 | + | ||
7 | +[*] | ||
8 | +indent_style = space | ||
9 | +indent_size = 2 | ||
10 | +end_of_line = lf | ||
11 | +charset = utf-8 | ||
12 | +trim_trailing_whitespace = true | ||
13 | +insert_final_newline = true |
@@ -0,0 +1,158 @@ | @@ -0,0 +1,158 @@ | ||
1 | +var console = process.console; | ||
2 | +var moment = require('moment'); | ||
3 | +var app = require('../../server/server'); | ||
4 | + | ||
5 | +module.exports = function(Emails) { | ||
6 | + Emails.disableRemoteMethod('find', true); | ||
7 | + Emails.disableRemoteMethod('findById', true); | ||
8 | + Emails.disableRemoteMethod('findOne', true); | ||
9 | + Emails.disableRemoteMethod('create', true); | ||
10 | + | ||
11 | + Emails.getEmail= function (app_id,cb){ | ||
12 | + Emails.find({where: {"app_id": app_id,"deleted_at":null}}, function (err, res) { | ||
13 | + if(err){ | ||
14 | + var response = { | ||
15 | + "resultCode": "50000", | ||
16 | + "resultDescription": "System error" | ||
17 | + }; | ||
18 | + console.tag("output").time().file().log(response); | ||
19 | + cb(null,response); | ||
20 | + }else{ | ||
21 | + if(res.length){ | ||
22 | + console.tag("query output").time().file().log(res); | ||
23 | + var response = { | ||
24 | + "resultCode" : "20000", | ||
25 | + "resultDescription": "Success", | ||
26 | + "data":{ | ||
27 | + "user_id": res | ||
28 | + } | ||
29 | + }; | ||
30 | + console.tag("output").time().file().log(response); | ||
31 | + cb(null,response); | ||
32 | + }else { | ||
33 | + var response = { | ||
34 | + "resultCode": "40400", | ||
35 | + "resultDescription": "data not found" | ||
36 | + }; | ||
37 | + console.tag("output").time().file().log(response); | ||
38 | + console.log(cb); | ||
39 | + cb(null, response); | ||
40 | + } | ||
41 | + } | ||
42 | + }); | ||
43 | + }; | ||
44 | + | ||
45 | + Emails.postEmail = function (req,cb) { | ||
46 | + console.tag("input").time().file().log(req); | ||
47 | + Emails.create(req,function (err,res) { | ||
48 | + if(err){ | ||
49 | + var response = { | ||
50 | + "resultCode" : "50000", | ||
51 | + "resultDescription": "System Error" | ||
52 | + }; | ||
53 | + console.tag("output").time().file().log(response); | ||
54 | + cb(null, response); | ||
55 | + } | ||
56 | + else{ | ||
57 | + var response = { | ||
58 | + "resultCode" : "20000", | ||
59 | + "resultDescription": "Success" | ||
60 | + }; | ||
61 | + console.tag("output").time().file().log(response); | ||
62 | + cb(null, response); | ||
63 | + } | ||
64 | + }); | ||
65 | + } | ||
66 | + | ||
67 | + Emails.putEmail = function (req,cb) { | ||
68 | + console.tag("input").time().file().log(req); | ||
69 | + var m_r = app.models.emails; | ||
70 | + var d_r = m_r.dataSource; | ||
71 | + var date = new Date(); | ||
72 | + var time = moment(date).format("YYYY-MM-DDTHH:mm:ss"); | ||
73 | + var sql = "UPDATE scmail SET modified_at ='" + time + "',email ='" + req.email + "' WHERE id = '" + req.id + "'"; | ||
74 | + console.tag("query").time().file().log(sql); | ||
75 | + d_r.connector.execute(sql,function (err,res) { | ||
76 | + if(err){ | ||
77 | + var response = { | ||
78 | + "resultCode" : "50000", | ||
79 | + "resultDescription": "System Error" | ||
80 | + }; | ||
81 | + console.tag("output").time().file().log(response); | ||
82 | + cb(null, response); | ||
83 | + } | ||
84 | + else{ | ||
85 | + var response = { | ||
86 | + "resultCode" : "20000", | ||
87 | + "resultDescription": "Success" | ||
88 | + }; | ||
89 | + console.tag("output").time().file().log(response); | ||
90 | + cb(null, response); | ||
91 | + } | ||
92 | + }); | ||
93 | + } | ||
94 | + | ||
95 | + Emails.deleteEmail= function (req,cb){ | ||
96 | + var m_r = app.models.emails; | ||
97 | + var d_r = m_r.dataSource; | ||
98 | + var date = new Date(); | ||
99 | + var time = moment(date).format("YYYY-MM-DDTHH:mm:ss"); | ||
100 | + var sql = "UPDATE scmail SET deleted_at ='" + time + "' WHERE id = '" + req.id + "'"; | ||
101 | + console.tag("query").time().file().log(sql); | ||
102 | + d_r.connector.execute(sql,function (err,res) { | ||
103 | + if(err){ | ||
104 | + var response = { | ||
105 | + "resultCode" : "50000", | ||
106 | + "resultDescription": "System Error" | ||
107 | + }; | ||
108 | + console.tag("output").time().file().log(response); | ||
109 | + console.log(err); | ||
110 | + cb(null, response); | ||
111 | + } | ||
112 | + else{ | ||
113 | + var response = { | ||
114 | + "resultCode" : "20000", | ||
115 | + "resultDescription": "Success" | ||
116 | + }; | ||
117 | + console.tag("output").time().file().log(response); | ||
118 | + cb(null, response); | ||
119 | + } | ||
120 | + }); | ||
121 | + } | ||
122 | + | ||
123 | + Emails.remoteMethod('getEmail', | ||
124 | + { | ||
125 | + http:{path:'/:app_id',verb:'get'}, | ||
126 | + accepts: {arg: 'app_id',type: 'string', | ||
127 | + http: function(ctx) { | ||
128 | + // ctx is LoopBack Context object | ||
129 | + | ||
130 | + // 1. Get the HTTP request object as provided by Express | ||
131 | + var req = ctx.req; | ||
132 | + // 2. Get 'a' and 'b' from query string or form data and return their sum. | ||
133 | + return req.params.app_id; | ||
134 | + } | ||
135 | + }, | ||
136 | + returns: {arg: 'return', type: 'object',root:true} | ||
137 | + }); | ||
138 | + | ||
139 | + | ||
140 | + Emails.remoteMethod('postEmail', | ||
141 | + { | ||
142 | + http: {path: '/', verb: 'post'}, | ||
143 | + accepts: {arg: 'username', type: 'object', http: {source: 'body'}}, | ||
144 | + returns: {arg: "return", type: 'object',root:true} | ||
145 | + }); | ||
146 | + Emails.remoteMethod('putEmail', | ||
147 | + { | ||
148 | + http: {path: '/updateEmail', verb: 'put'}, | ||
149 | + accepts: {arg: 'req', type: 'object', http: {source: 'body'}}, | ||
150 | + returns: {arg: "return", type: 'object',root:true} | ||
151 | + }); | ||
152 | + Emails.remoteMethod('deleteEmail', | ||
153 | + { | ||
154 | + http: {path: '/deleteEmail', verb: 'put'}, | ||
155 | + accepts: {arg: 'req', type: 'object', http: {source: 'body'}}, | ||
156 | + returns: {arg: "return", type: 'object',root:true} | ||
157 | + }); | ||
158 | +}; |
@@ -0,0 +1,37 @@ | @@ -0,0 +1,37 @@ | ||
1 | +{ | ||
2 | + "name": "emails", | ||
3 | + "plural": "email", | ||
4 | + "base": "PersistedModel", | ||
5 | + "idInjection": true, | ||
6 | + "options": { | ||
7 | + "validateUpsert": true, | ||
8 | + "mysql": { | ||
9 | + "table": "scmail" | ||
10 | + } | ||
11 | + }, | ||
12 | + "properties": { | ||
13 | + "id": { | ||
14 | + "type": "number", | ||
15 | + "id": true | ||
16 | + }, | ||
17 | + "app_id": { | ||
18 | + "type": "number" | ||
19 | + }, | ||
20 | + "email": { | ||
21 | + "type": "string" | ||
22 | + }, | ||
23 | + "created_at": { | ||
24 | + "type": "date" | ||
25 | + }, | ||
26 | + "modified_at": { | ||
27 | + "type": "date" | ||
28 | + }, | ||
29 | + "deleted_at": { | ||
30 | + "type": "date" | ||
31 | + } | ||
32 | + }, | ||
33 | + "validations": [], | ||
34 | + "relations": {}, | ||
35 | + "acls": [], | ||
36 | + "methods": {} | ||
37 | +} |
@@ -0,0 +1,168 @@ | @@ -0,0 +1,168 @@ | ||
1 | +var console = process.console; | ||
2 | +var nodemailer = require('nodemailer'); | ||
3 | +var smtpTransport = require('nodemailer-smtp-transport'); | ||
4 | +var yaml_config = require('node-yaml-config'); | ||
5 | +var config = yaml_config.load('./config/config.yml'); | ||
6 | + | ||
7 | +module.exports = function(Emailsenter) { | ||
8 | + Emailsenter.disableRemoteMethod('find', true); | ||
9 | + Emailsenter.disableRemoteMethod('findById', true); | ||
10 | + Emailsenter.disableRemoteMethod('findOne', true); | ||
11 | + Emailsenter.disableRemoteMethod('create', true); | ||
12 | + | ||
13 | + //send mail without app_id | ||
14 | + Emailsenter.postWithoutApp_id = function (req,cb) { | ||
15 | + //check input data | ||
16 | + console.tag("input").time().file().log(req); | ||
17 | + | ||
18 | + //set nodemailer | ||
19 | + smtpTransport = nodemailer.createTransport(smtpTransport({ | ||
20 | + host: "smtp.gmail.com", | ||
21 | + secureConnection: false, | ||
22 | + port: 587, | ||
23 | + auth: { | ||
24 | + user: config.email.username, | ||
25 | + pass: config.email.password | ||
26 | + } | ||
27 | + })); | ||
28 | + | ||
29 | + | ||
30 | + //set defult response | ||
31 | + var response = { | ||
32 | + "resultCode": "50000", | ||
33 | + "resultDescription": "mail error: Missing or Invalid Param" | ||
34 | + }; | ||
35 | + | ||
36 | + //set mail | ||
37 | + var mailOptions = { | ||
38 | + to: req.header.to, | ||
39 | + subject: req.header.subject, | ||
40 | + text: req.body.text, | ||
41 | + attachments: req.body.attachments, | ||
42 | + cc: '', | ||
43 | + bcc: '' | ||
44 | + }; | ||
45 | + | ||
46 | + //send | ||
47 | + if (mailOptions) { | ||
48 | + smtpTransport.sendMail(mailOptions, function(error, resp) { | ||
49 | + if (error) { | ||
50 | + var response = { | ||
51 | + "resultCode": "50000", | ||
52 | + "resultDescription": "System error" | ||
53 | + }; | ||
54 | + console.tag("output").time().file().log(response); | ||
55 | + cb(null,response); | ||
56 | + } else { | ||
57 | + var response = { | ||
58 | + "resultCode": "20000", | ||
59 | + "resultDescription": "Success" | ||
60 | + }; | ||
61 | + console.tag("output").time().file().log(response); | ||
62 | + cb(null,response); | ||
63 | + } | ||
64 | + }); | ||
65 | + }else{ | ||
66 | + console.tag("output").time().file().log(response); | ||
67 | + cb(null,response); | ||
68 | + } | ||
69 | + }//send mail without app_id(END) | ||
70 | + | ||
71 | + //send mail without app_id | ||
72 | + Emailsenter.postWithApp_id = function (req,cb) { | ||
73 | + //check input data | ||
74 | + console.tag("input").time().file().log(req); | ||
75 | + | ||
76 | + Emailsenter.find({where: {"app_id": req.app_id,"delete_at":null}}, function (err, res) { | ||
77 | + if (err) {//error by database | ||
78 | + var response = { | ||
79 | + "resultCode": "50000", | ||
80 | + "resultDescription": "System error" | ||
81 | + }; | ||
82 | + console.tag("output").time().file().log(response); | ||
83 | + cb(null, response); | ||
84 | + } | ||
85 | + else {//found database | ||
86 | + if (res.length) {// found data by query | ||
87 | + //check responsedata by query | ||
88 | + console.tag("query output").time().file().log(res); | ||
89 | + | ||
90 | + //set to in email with app_id | ||
91 | + for(var i =0;i<res.length;i++) | ||
92 | + to += res[i].email +","; | ||
93 | + | ||
94 | + | ||
95 | + smtpTransport = nodemailer.createTransport(smtpTransport({ | ||
96 | + host: "smtp.gmail.com", | ||
97 | + secureConnection: false, | ||
98 | + port: 587, | ||
99 | + auth: { | ||
100 | + user: config.email.username, | ||
101 | + pass: config.email.password | ||
102 | + } | ||
103 | + })); | ||
104 | + | ||
105 | + response = { | ||
106 | + "resultCode": "50000", | ||
107 | + "resultDescription": "mail error: Missing or Invalid Param" | ||
108 | + }; | ||
109 | + | ||
110 | + var mailOptions = { | ||
111 | + to: to, | ||
112 | + subject: req.header.subject, | ||
113 | + text: req.body.text, | ||
114 | + attachments: req.body.attachments, | ||
115 | + cc: '', | ||
116 | + bcc: '' | ||
117 | + }; | ||
118 | + if (mailOptions) { | ||
119 | + smtpTransport.sendMail(mailOptions, function(error, resp) { | ||
120 | + if (error) { | ||
121 | + | ||
122 | + console.log(error); | ||
123 | + response = { | ||
124 | + "resultCode": "50000", | ||
125 | + "resultDescription": "System error" | ||
126 | + }; | ||
127 | + console.tag("output").time().file().log(response); | ||
128 | + cb(null,response); | ||
129 | + } else { | ||
130 | + response = { | ||
131 | + "resultCode": "20000", | ||
132 | + "resultDescription": "Success" | ||
133 | + }; | ||
134 | + console.tag("output").time().file().log(response); | ||
135 | + cb(null,response); | ||
136 | + } | ||
137 | + }); | ||
138 | + }else{ | ||
139 | + console.tag("output").time().file().log(response); | ||
140 | + cb(null,response); | ||
141 | + } | ||
142 | + | ||
143 | + } else {//Database Not found data | ||
144 | + response = { | ||
145 | + "resultCode": "40400", | ||
146 | + "resultDescription": "data not found" | ||
147 | + }; | ||
148 | + console.tag("output").time().file().log(response); | ||
149 | + cb(null, response); | ||
150 | + } | ||
151 | + | ||
152 | + } | ||
153 | + }); | ||
154 | + }//send mail without app_id(END) | ||
155 | + | ||
156 | + Emailsenter.remoteMethod('postWithoutApp_id', | ||
157 | + { | ||
158 | + http: {path: '/', verb: 'post'}, | ||
159 | + accepts: {arg: 'req', type: 'object', http: {source: 'body'}}, | ||
160 | + returns: {arg: "return", type: 'object',root:true} | ||
161 | + }); | ||
162 | + Emailsenter.remoteMethod('postWithApp_id', | ||
163 | + { | ||
164 | + http: {path: '/appid', verb: 'post'}, | ||
165 | + accepts: {arg: 'req', type: 'object', http: {source: 'body'}}, | ||
166 | + returns: {arg: "return", type: 'object',root:true} | ||
167 | + }); | ||
168 | +}; |
@@ -0,0 +1,37 @@ | @@ -0,0 +1,37 @@ | ||
1 | +{ | ||
2 | + "name": "emailsenter", | ||
3 | + "plural": "sendemail", | ||
4 | + "base": "PersistedModel", | ||
5 | + "idInjection": true, | ||
6 | + "options": { | ||
7 | + "validateUpsert": true, | ||
8 | + "mysql": { | ||
9 | + "table": "scmail" | ||
10 | + } | ||
11 | + }, | ||
12 | + "properties": { | ||
13 | + "id": { | ||
14 | + "type": "number", | ||
15 | + "id": true | ||
16 | + }, | ||
17 | + "app_id": { | ||
18 | + "type": "number" | ||
19 | + }, | ||
20 | + "email": { | ||
21 | + "type": "string" | ||
22 | + }, | ||
23 | + "created_at": { | ||
24 | + "type": "date" | ||
25 | + }, | ||
26 | + "modified_at": { | ||
27 | + "type": "date" | ||
28 | + }, | ||
29 | + "deleted_at": { | ||
30 | + "type": "date" | ||
31 | + } | ||
32 | + }, | ||
33 | + "validations": [], | ||
34 | + "relations": {}, | ||
35 | + "acls": [], | ||
36 | + "methods": {} | ||
37 | +} |
@@ -0,0 +1,36 @@ | @@ -0,0 +1,36 @@ | ||
1 | +default: | ||
2 | + server: | ||
3 | + port: 3000 | ||
4 | + email: | ||
5 | + username: deathbill99@gmail.com | ||
6 | + password: 4seasondl | ||
7 | + database: | ||
8 | + host: 'localhost' | ||
9 | + port: 27017 | ||
10 | + | ||
11 | +development: | ||
12 | + database: | ||
13 | + db: 'dev_db' | ||
14 | + email: | ||
15 | + username: deathbill99@gmail.com | ||
16 | + password: 4seasondl | ||
17 | + | ||
18 | +test: | ||
19 | + database: | ||
20 | + db: 'test_db' | ||
21 | + email: | ||
22 | + username: deathbill99@gmail.com | ||
23 | + password: 4seasondl | ||
24 | + | ||
25 | +production: | ||
26 | + server: | ||
27 | + port: 8000 | ||
28 | + email: | ||
29 | + username: deathbill99@gmail.com | ||
30 | + password: 4seasondl | ||
31 | + database: | ||
32 | + db: 'prod_db' | ||
33 | + user: 'dbuser' | ||
34 | + password: 'pass' | ||
35 | + cache: | ||
36 | + dir: 'static' |
@@ -0,0 +1,10 @@ | @@ -0,0 +1,10 @@ | ||
1 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1476961025436,"location":{"filename":"server.js","line":15}},"args":{"0":"Web server listening at: %s","1":"http://localhost:3000"},"contextString":"","argsString":"Web server listening at: http://localhost:3000","message":"Web server listening at: http://localhost:3000"} | ||
2 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1476961025440,"location":{"filename":"server.js","line":18}},"args":{"0":"Browse your REST API at %s%s","1":"http://localhost:3000","2":"/explorer"},"contextString":"","argsString":"Browse your REST API at http://localhost:3000/explorer","message":"Browse your REST API at http://localhost:3000/explorer"} | ||
3 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1476961377643,"location":{"filename":"server.js","line":15}},"args":{"0":"Web server listening at: %s","1":"http://localhost:3000"},"contextString":"","argsString":"Web server listening at: http://localhost:3000","message":"Web server listening at: http://localhost:3000"} | ||
4 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1476961377648,"location":{"filename":"server.js","line":18}},"args":{"0":"Browse your REST API at %s%s","1":"http://localhost:3000","2":"/explorer"},"contextString":"","argsString":"Browse your REST API at http://localhost:3000/explorer","message":"Browse your REST API at http://localhost:3000/explorer"} | ||
5 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["input"],"file":true,"time":1476961378871,"location":{"filename":"emailsenter.js","line":10}},"args":{"0":"1"},"contextString":"[input] [emailsenter.js:10] 2016-10-20T11:02:58.871Z ","argsString":"1","message":"[input] [emailsenter.js:10] 2016-10-20T11:02:58.871Z 1"} | ||
6 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["output"],"file":true,"time":1476961378890,"location":{"filename":"emailsenter.js","line":36}},"args":{"0":{"resultCode":"40400","resultDescription":"data not found"}},"contextString":"[output] [emailsenter.js:36] 2016-10-20T11:02:58.890Z ","argsString":"{\n \"resultCode\": \"40400\",\n \"resultDescription\": \"data not found\"\n}","message":"[output] [emailsenter.js:36] 2016-10-20T11:02:58.890Z {\n \"resultCode\": \"40400\",\n \"resultDescription\": \"data not found\"\n}"} | ||
7 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1476961486123,"location":{"filename":"server.js","line":15}},"args":{"0":"Web server listening at: %s","1":"http://localhost:3000"},"contextString":"","argsString":"Web server listening at: http://localhost:3000","message":"Web server listening at: http://localhost:3000"} | ||
8 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1476961486127,"location":{"filename":"server.js","line":18}},"args":{"0":"Browse your REST API at %s%s","1":"http://localhost:3000","2":"/explorer"},"contextString":"","argsString":"Browse your REST API at http://localhost:3000/explorer","message":"Browse your REST API at http://localhost:3000/explorer"} | ||
9 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["output"],"file":true,"time":1476961619340,"location":{"filename":"emailsenter.js","line":36}},"args":{"0":{"resultCode":"40400","resultDescription":"data not found"}},"contextString":"[output] [emailsenter.js:36] 2016-10-20T11:06:59.340Z ","argsString":"{\n \"resultCode\": \"40400\",\n \"resultDescription\": \"data not found\"\n}","message":"[output] [emailsenter.js:36] 2016-10-20T11:06:59.340Z {\n \"resultCode\": \"40400\",\n \"resultDescription\": \"data not found\"\n}"} | ||
10 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["input"],"file":true,"time":1476961619339,"location":{"filename":"emailsenter.js","line":10}},"args":{"0":"1"},"contextString":"[input] [emailsenter.js:10] 2016-10-20T11:06:59.339Z ","argsString":"1","message":"[input] [emailsenter.js:10] 2016-10-20T11:06:59.339Z 1"} |
@@ -0,0 +1,247 @@ | @@ -0,0 +1,247 @@ | ||
1 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477013386850,"location":{"filename":"server.js","line":15}},"args":{"0":"Web server listening at: %s","1":"http://localhost:3000"},"contextString":"","argsString":"Web server listening at: http://localhost:3000","message":"Web server listening at: http://localhost:3000"} | ||
2 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477013386853,"location":{"filename":"server.js","line":18}},"args":{"0":"Browse your REST API at %s%s","1":"http://localhost:3000","2":"/explorer"},"contextString":"","argsString":"Browse your REST API at http://localhost:3000/explorer","message":"Browse your REST API at http://localhost:3000/explorer"} | ||
3 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["output"],"file":true,"time":1477013438874,"location":{"filename":"emailsenter.js","line":36}},"args":{"0":{"resultCode":"40400","resultDescription":"data not found"}},"contextString":"[output] [emailsenter.js:36] 2016-10-21T01:30:38.874Z ","argsString":"{\n \"resultCode\": \"40400\",\n \"resultDescription\": \"data not found\"\n}","message":"[output] [emailsenter.js:36] 2016-10-21T01:30:38.874Z {\n \"resultCode\": \"40400\",\n \"resultDescription\": \"data not found\"\n}"} | ||
4 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["input"],"file":true,"time":1477013438871,"location":{"filename":"emailsenter.js","line":10}},"args":{"0":"1"},"contextString":"[input] [emailsenter.js:10] 2016-10-21T01:30:38.871Z ","argsString":"1","message":"[input] [emailsenter.js:10] 2016-10-21T01:30:38.871Z 1"} | ||
5 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477013495678,"location":{"filename":"server.js","line":15}},"args":{"0":"Web server listening at: %s","1":"http://localhost:3000"},"contextString":"","argsString":"Web server listening at: http://localhost:3000","message":"Web server listening at: http://localhost:3000"} | ||
6 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477013495682,"location":{"filename":"server.js","line":18}},"args":{"0":"Browse your REST API at %s%s","1":"http://localhost:3000","2":"/explorer"},"contextString":"","argsString":"Browse your REST API at http://localhost:3000/explorer","message":"Browse your REST API at http://localhost:3000/explorer"} | ||
7 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["input"],"file":true,"time":1477013497629,"location":{"filename":"emailsenter.js","line":10}},"args":{"0":"1"},"contextString":"[input] [emailsenter.js:10] 2016-10-21T01:31:37.629Z ","argsString":"1","message":"[input] [emailsenter.js:10] 2016-10-21T01:31:37.629Z 1"} | ||
8 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477013497630,"location":{"filename":"emailsenter.js","line":32}},"args":{"0":[]},"contextString":"","argsString":"[]","message":"[]"} | ||
9 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["output"],"file":true,"time":1477013497631,"location":{"filename":"emailsenter.js","line":37}},"args":{"0":{"resultCode":"40400","resultDescription":"data not found"}},"contextString":"[output] [emailsenter.js:37] 2016-10-21T01:31:37.631Z ","argsString":"{\n \"resultCode\": \"40400\",\n \"resultDescription\": \"data not found\"\n}","message":"[output] [emailsenter.js:37] 2016-10-21T01:31:37.631Z {\n \"resultCode\": \"40400\",\n \"resultDescription\": \"data not found\"\n}"} | ||
10 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477015177444,"location":{"filename":"server.js","line":15}},"args":{"0":"Web server listening at: %s","1":"http://localhost:3000"},"contextString":"","argsString":"Web server listening at: http://localhost:3000","message":"Web server listening at: http://localhost:3000"} | ||
11 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477015177448,"location":{"filename":"server.js","line":18}},"args":{"0":"Browse your REST API at %s%s","1":"http://localhost:3000","2":"/explorer"},"contextString":"","argsString":"Browse your REST API at http://localhost:3000/explorer","message":"Browse your REST API at http://localhost:3000/explorer"} | ||
12 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["input"],"file":true,"time":1477015179849,"location":{"filename":"emailsenter.js","line":10}},"args":{"0":"1"},"contextString":"[input] [emailsenter.js:10] 2016-10-21T01:59:39.849Z ","argsString":"1","message":"[input] [emailsenter.js:10] 2016-10-21T01:59:39.849Z 1"} | ||
13 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477015179851,"location":{"filename":"emailsenter.js","line":32}},"args":{"0":[]},"contextString":"","argsString":"[]","message":"[]"} | ||
14 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["output"],"file":true,"time":1477015179852,"location":{"filename":"emailsenter.js","line":37}},"args":{"0":{"resultCode":"40400","resultDescription":"data not found"}},"contextString":"[output] [emailsenter.js:37] 2016-10-21T01:59:39.852Z ","argsString":"{\n \"resultCode\": \"40400\",\n \"resultDescription\": \"data not found\"\n}","message":"[output] [emailsenter.js:37] 2016-10-21T01:59:39.852Z {\n \"resultCode\": \"40400\",\n \"resultDescription\": \"data not found\"\n}"} | ||
15 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477015689132,"location":{"filename":"server.js","line":15}},"args":{"0":"Web server listening at: %s","1":"http://localhost:3000"},"contextString":"","argsString":"Web server listening at: http://localhost:3000","message":"Web server listening at: http://localhost:3000"} | ||
16 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477015689135,"location":{"filename":"server.js","line":18}},"args":{"0":"Browse your REST API at %s%s","1":"http://localhost:3000","2":"/explorer"},"contextString":"","argsString":"Browse your REST API at http://localhost:3000/explorer","message":"Browse your REST API at http://localhost:3000/explorer"} | ||
17 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["input"],"file":true,"time":1477015806226,"location":{"filename":"emailsenter.js","line":10}},"args":{"0":"1"},"contextString":"[input] [emailsenter.js:10] 2016-10-21T02:10:06.226Z ","argsString":"1","message":"[input] [emailsenter.js:10] 2016-10-21T02:10:06.226Z 1"} | ||
18 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["query output"],"file":true,"time":1477015806229,"location":{"filename":"emailsenter.js","line":21}},"args":{"0":[{"id":1,"app_id":0,"email":"string","created_at":"2016-10-21T00:00:00.000Z","modified_at":"2016-10-21T00:00:00.000Z","deleted_at":"2016-10-21T00:00:00.000Z"}]},"contextString":"[query output] [emailsenter.js:21] 2016-10-21T02:10:06.229Z ","argsString":"[\n {\n \"id\": 1,\n \"app_id\": 0,\n \"email\": \"string\",\n \"created_at\": \"2016-10-21T00:00:00.000Z\",\n \"modified_at\": \"2016-10-21T00:00:00.000Z\",\n \"deleted_at\": \"2016-10-21T00:00:00.000Z\"\n }\n]","message":"[query output] [emailsenter.js:21] 2016-10-21T02:10:06.229Z [\n {\n \"id\": 1,\n \"app_id\": 0,\n \"email\": \"string\",\n \"created_at\": \"2016-10-21T00:00:00.000Z\",\n \"modified_at\": \"2016-10-21T00:00:00.000Z\",\n \"deleted_at\": \"2016-10-21T00:00:00.000Z\"\n }\n]"} | ||
19 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["output"],"file":true,"time":1477015806230,"location":{"filename":"emailsenter.js","line":29}},"args":{"0":{"resultCode":"20000","resultDescription":"Success","data":{"menu":[{"id":1,"app_id":0,"email":"string","created_at":"2016-10-21T00:00:00.000Z","modified_at":"2016-10-21T00:00:00.000Z","deleted_at":"2016-10-21T00:00:00.000Z"}]}}},"contextString":"[output] [emailsenter.js:29] 2016-10-21T02:10:06.230Z ","argsString":"{\n \"resultCode\": \"20000\",\n \"resultDescription\": \"Success\",\n \"data\": {\n \"menu\": [\n {\n \"id\": 1,\n \"app_id\": 0,\n \"email\": \"string\",\n \"created_at\": \"2016-10-21T00:00:00.000Z\",\n \"modified_at\": \"2016-10-21T00:00:00.000Z\",\n \"deleted_at\": \"2016-10-21T00:00:00.000Z\"\n }\n ]\n }\n}","message":"[output] [emailsenter.js:29] 2016-10-21T02:10:06.230Z {\n \"resultCode\": \"20000\",\n \"resultDescription\": \"Success\",\n \"data\": {\n \"menu\": [\n {\n \"id\": 1,\n \"app_id\": 0,\n \"email\": \"string\",\n \"created_at\": \"2016-10-21T00:00:00.000Z\",\n \"modified_at\": \"2016-10-21T00:00:00.000Z\",\n \"deleted_at\": \"2016-10-21T00:00:00.000Z\"\n }\n ]\n }\n}"} | ||
20 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477015887472,"location":{"filename":"server.js","line":15}},"args":{"0":"Web server listening at: %s","1":"http://localhost:3000"},"contextString":"","argsString":"Web server listening at: http://localhost:3000","message":"Web server listening at: http://localhost:3000"} | ||
21 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477015887476,"location":{"filename":"server.js","line":18}},"args":{"0":"Browse your REST API at %s%s","1":"http://localhost:3000","2":"/explorer"},"contextString":"","argsString":"Browse your REST API at http://localhost:3000/explorer","message":"Browse your REST API at http://localhost:3000/explorer"} | ||
22 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["input"],"file":true,"time":1477015889250,"location":{"filename":"emailsenter.js","line":10}},"args":{"0":"1"},"contextString":"[input] [emailsenter.js:10] 2016-10-21T02:11:29.250Z ","argsString":"1","message":"[input] [emailsenter.js:10] 2016-10-21T02:11:29.250Z 1"} | ||
23 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477015889252,"location":{"filename":"emailsenter.js","line":32}},"args":{"0":[]},"contextString":"","argsString":"[]","message":"[]"} | ||
24 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["output"],"file":true,"time":1477015889254,"location":{"filename":"emailsenter.js","line":37}},"args":{"0":{"resultCode":"40400","resultDescription":"data not found"}},"contextString":"[output] [emailsenter.js:37] 2016-10-21T02:11:29.254Z ","argsString":"{\n \"resultCode\": \"40400\",\n \"resultDescription\": \"data not found\"\n}","message":"[output] [emailsenter.js:37] 2016-10-21T02:11:29.254Z {\n \"resultCode\": \"40400\",\n \"resultDescription\": \"data not found\"\n}"} | ||
25 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477015960941,"location":{"filename":"server.js","line":18}},"args":{"0":"Browse your REST API at %s%s","1":"http://localhost:3000","2":"/explorer"},"contextString":"","argsString":"Browse your REST API at http://localhost:3000/explorer","message":"Browse your REST API at http://localhost:3000/explorer"} | ||
26 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477015960937,"location":{"filename":"server.js","line":15}},"args":{"0":"Web server listening at: %s","1":"http://localhost:3000"},"contextString":"","argsString":"Web server listening at: http://localhost:3000","message":"Web server listening at: http://localhost:3000"} | ||
27 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["input"],"file":true,"time":1477015962349,"location":{"filename":"emailsenter.js","line":10}},"args":{"0":"1"},"contextString":"[input] [emailsenter.js:10] 2016-10-21T02:12:42.349Z ","argsString":"1","message":"[input] [emailsenter.js:10] 2016-10-21T02:12:42.349Z 1"} | ||
28 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477015962350,"location":{"filename":"emailsenter.js","line":32}},"args":{"0":[]},"contextString":"","argsString":"[]","message":"[]"} | ||
29 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["output"],"file":true,"time":1477015962351,"location":{"filename":"emailsenter.js","line":37}},"args":{"0":{"resultCode":"40400","resultDescription":"data not found"}},"contextString":"[output] [emailsenter.js:37] 2016-10-21T02:12:42.351Z ","argsString":"{\n \"resultCode\": \"40400\",\n \"resultDescription\": \"data not found\"\n}","message":"[output] [emailsenter.js:37] 2016-10-21T02:12:42.351Z {\n \"resultCode\": \"40400\",\n \"resultDescription\": \"data not found\"\n}"} | ||
30 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477015979207,"location":{"filename":"server.js","line":15}},"args":{"0":"Web server listening at: %s","1":"http://localhost:3000"},"contextString":"","argsString":"Web server listening at: http://localhost:3000","message":"Web server listening at: http://localhost:3000"} | ||
31 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477015979211,"location":{"filename":"server.js","line":18}},"args":{"0":"Browse your REST API at %s%s","1":"http://localhost:3000","2":"/explorer"},"contextString":"","argsString":"Browse your REST API at http://localhost:3000/explorer","message":"Browse your REST API at http://localhost:3000/explorer"} | ||
32 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477016054239,"location":{"filename":"server.js","line":15}},"args":{"0":"Web server listening at: %s","1":"http://localhost:3000"},"contextString":"","argsString":"Web server listening at: http://localhost:3000","message":"Web server listening at: http://localhost:3000"} | ||
33 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477016054251,"location":{"filename":"server.js","line":18}},"args":{"0":"Browse your REST API at %s%s","1":"http://localhost:3000","2":"/explorer"},"contextString":"","argsString":"Browse your REST API at http://localhost:3000/explorer","message":"Browse your REST API at http://localhost:3000/explorer"} | ||
34 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477016082892,"location":{"filename":"server.js","line":15}},"args":{"0":"Web server listening at: %s","1":"http://localhost:3000"},"contextString":"","argsString":"Web server listening at: http://localhost:3000","message":"Web server listening at: http://localhost:3000"} | ||
35 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477016082895,"location":{"filename":"server.js","line":18}},"args":{"0":"Browse your REST API at %s%s","1":"http://localhost:3000","2":"/explorer"},"contextString":"","argsString":"Browse your REST API at http://localhost:3000/explorer","message":"Browse your REST API at http://localhost:3000/explorer"} | ||
36 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477016542836,"location":{"filename":"server.js","line":15}},"args":{"0":"Web server listening at: %s","1":"http://localhost:3000"},"contextString":"","argsString":"Web server listening at: http://localhost:3000","message":"Web server listening at: http://localhost:3000"} | ||
37 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477016542839,"location":{"filename":"server.js","line":18}},"args":{"0":"Browse your REST API at %s%s","1":"http://localhost:3000","2":"/explorer"},"contextString":"","argsString":"Browse your REST API at http://localhost:3000/explorer","message":"Browse your REST API at http://localhost:3000/explorer"} | ||
38 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477019016980,"location":{"filename":"server.js","line":15}},"args":{"0":"Web server listening at: %s","1":"http://localhost:3000"},"contextString":"","argsString":"Web server listening at: http://localhost:3000","message":"Web server listening at: http://localhost:3000"} | ||
39 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477019016983,"location":{"filename":"server.js","line":18}},"args":{"0":"Browse your REST API at %s%s","1":"http://localhost:3000","2":"/explorer"},"contextString":"","argsString":"Browse your REST API at http://localhost:3000/explorer","message":"Browse your REST API at http://localhost:3000/explorer"} | ||
40 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["input"],"file":true,"time":1477019140381,"location":{"filename":"emailsenter.js","line":57}},"args":{"0":{"header":{"username":"deathbill99@gmail.com","password":"4seasondl","to":"deathbill99@gmail.com","subject":"fuckyou"},"body":{"text":"son of a *****","html":"","attachments":""}}},"contextString":"[input] [emailsenter.js:57] 2016-10-21T03:05:40.381Z ","argsString":"{\n \"header\": {\n \"username\": \"deathbill99@gmail.com\",\n \"password\": \"4seasondl\",\n \"to\": \"deathbill99@gmail.com\",\n \"subject\": \"fuckyou\"\n },\n \"body\": {\n \"text\": \"son of a *****\",\n \"html\": \"\",\n \"attachments\": \"\"\n }\n}","message":"[input] [emailsenter.js:57] 2016-10-21T03:05:40.381Z {\n \"header\": {\n \"username\": \"deathbill99@gmail.com\",\n \"password\": \"4seasondl\",\n \"to\": \"deathbill99@gmail.com\",\n \"subject\": \"fuckyou\"\n },\n \"body\": {\n \"text\": \"son of a *****\",\n \"html\": \"\",\n \"attachments\": \"\"\n }\n}"} | ||
41 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["output"],"file":true,"time":1477019140391,"location":{"filename":"emailsenter.js","line":64}},"args":{"0":{"resultCode":"50000","resultDescription":"System error"}},"contextString":"[output] [emailsenter.js:64] 2016-10-21T03:05:40.391Z ","argsString":"{\n \"resultCode\": \"50000\",\n \"resultDescription\": \"System error\"\n}","message":"[output] [emailsenter.js:64] 2016-10-21T03:05:40.391Z {\n \"resultCode\": \"50000\",\n \"resultDescription\": \"System error\"\n}"} | ||
42 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477019185159,"location":{"filename":"server.js","line":15}},"args":{"0":"Web server listening at: %s","1":"http://localhost:3000"},"contextString":"","argsString":"Web server listening at: http://localhost:3000","message":"Web server listening at: http://localhost:3000"} | ||
43 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477019185163,"location":{"filename":"server.js","line":18}},"args":{"0":"Browse your REST API at %s%s","1":"http://localhost:3000","2":"/explorer"},"contextString":"","argsString":"Browse your REST API at http://localhost:3000/explorer","message":"Browse your REST API at http://localhost:3000/explorer"} | ||
44 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["input"],"file":true,"time":1477019187346,"location":{"filename":"emailsenter.js","line":15}},"args":{"0":{"header":{"username":"deathbill99@gmail.com","password":"4seasondl","to":"deathbill99@gmail.com","subject":"fuckyou"},"body":{"text":"son of a *****","html":"","attachments":""}}},"contextString":"[input] [emailsenter.js:15] 2016-10-21T03:06:27.346Z ","argsString":"{\n \"header\": {\n \"username\": \"deathbill99@gmail.com\",\n \"password\": \"4seasondl\",\n \"to\": \"deathbill99@gmail.com\",\n \"subject\": \"fuckyou\"\n },\n \"body\": {\n \"text\": \"son of a *****\",\n \"html\": \"\",\n \"attachments\": \"\"\n }\n}","message":"[input] [emailsenter.js:15] 2016-10-21T03:06:27.346Z {\n \"header\": {\n \"username\": \"deathbill99@gmail.com\",\n \"password\": \"4seasondl\",\n \"to\": \"deathbill99@gmail.com\",\n \"subject\": \"fuckyou\"\n },\n \"body\": {\n \"text\": \"son of a *****\",\n \"html\": \"\",\n \"attachments\": \"\"\n }\n}"} | ||
45 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477019227383,"location":{"filename":"server.js","line":15}},"args":{"0":"Web server listening at: %s","1":"http://localhost:3000"},"contextString":"","argsString":"Web server listening at: http://localhost:3000","message":"Web server listening at: http://localhost:3000"} | ||
46 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477019227387,"location":{"filename":"server.js","line":18}},"args":{"0":"Browse your REST API at %s%s","1":"http://localhost:3000","2":"/explorer"},"contextString":"","argsString":"Browse your REST API at http://localhost:3000/explorer","message":"Browse your REST API at http://localhost:3000/explorer"} | ||
47 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["input"],"file":true,"time":1477019228688,"location":{"filename":"emailsenter.js","line":15}},"args":{"0":{"header":{"username":"deathbill99@gmail.com","password":"4seasondl","to":"deathbill99@gmail.com","subject":"fuckyou"},"body":{"text":"son of a *****","html":"","attachments":""}}},"contextString":"[input] [emailsenter.js:15] 2016-10-21T03:07:08.688Z ","argsString":"{\n \"header\": {\n \"username\": \"deathbill99@gmail.com\",\n \"password\": \"4seasondl\",\n \"to\": \"deathbill99@gmail.com\",\n \"subject\": \"fuckyou\"\n },\n \"body\": {\n \"text\": \"son of a *****\",\n \"html\": \"\",\n \"attachments\": \"\"\n }\n}","message":"[input] [emailsenter.js:15] 2016-10-21T03:07:08.688Z {\n \"header\": {\n \"username\": \"deathbill99@gmail.com\",\n \"password\": \"4seasondl\",\n \"to\": \"deathbill99@gmail.com\",\n \"subject\": \"fuckyou\"\n },\n \"body\": {\n \"text\": \"son of a *****\",\n \"html\": \"\",\n \"attachments\": \"\"\n }\n}"} | ||
48 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477019266692,"location":{"filename":"server.js","line":15}},"args":{"0":"Web server listening at: %s","1":"http://localhost:3000"},"contextString":"","argsString":"Web server listening at: http://localhost:3000","message":"Web server listening at: http://localhost:3000"} | ||
49 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477019266696,"location":{"filename":"server.js","line":18}},"args":{"0":"Browse your REST API at %s%s","1":"http://localhost:3000","2":"/explorer"},"contextString":"","argsString":"Browse your REST API at http://localhost:3000/explorer","message":"Browse your REST API at http://localhost:3000/explorer"} | ||
50 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["data"],"file":true,"time":1477019274739,"location":{"filename":"emailsenter.js","line":21}},"args":{"0":"deathbill99@gmail.com fuckyou son of a *****"},"contextString":"[data] [emailsenter.js:21] 2016-10-21T03:07:54.739Z ","argsString":"deathbill99@gmail.com fuckyou son of a *****","message":"[data] [emailsenter.js:21] 2016-10-21T03:07:54.739Z deathbill99@gmail.com fuckyou son of a *****"} | ||
51 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["input"],"file":true,"time":1477019274737,"location":{"filename":"emailsenter.js","line":15}},"args":{"0":{"header":{"username":"deathbill99@gmail.com","password":"4seasondl","to":"deathbill99@gmail.com","subject":"fuckyou"},"body":{"text":"son of a *****","html":"","attachments":""}}},"contextString":"[input] [emailsenter.js:15] 2016-10-21T03:07:54.737Z ","argsString":"{\n \"header\": {\n \"username\": \"deathbill99@gmail.com\",\n \"password\": \"4seasondl\",\n \"to\": \"deathbill99@gmail.com\",\n \"subject\": \"fuckyou\"\n },\n \"body\": {\n \"text\": \"son of a *****\",\n \"html\": \"\",\n \"attachments\": \"\"\n }\n}","message":"[input] [emailsenter.js:15] 2016-10-21T03:07:54.737Z {\n \"header\": {\n \"username\": \"deathbill99@gmail.com\",\n \"password\": \"4seasondl\",\n \"to\": \"deathbill99@gmail.com\",\n \"subject\": \"fuckyou\"\n },\n \"body\": {\n \"text\": \"son of a *****\",\n \"html\": \"\",\n \"attachments\": \"\"\n }\n}"} | ||
52 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477019499516,"location":{"filename":"server.js","line":18}},"args":{"0":"Browse your REST API at %s%s","1":"http://localhost:3000","2":"/explorer"},"contextString":"","argsString":"Browse your REST API at http://localhost:3000/explorer","message":"Browse your REST API at http://localhost:3000/explorer"} | ||
53 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477019499513,"location":{"filename":"server.js","line":15}},"args":{"0":"Web server listening at: %s","1":"http://localhost:3000"},"contextString":"","argsString":"Web server listening at: http://localhost:3000","message":"Web server listening at: http://localhost:3000"} | ||
54 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["input"],"file":true,"time":1477019503628,"location":{"filename":"emailsenter.js","line":15}},"args":{"0":{"header":{"username":"deathbill99@gmail.com","password":"4seasondl","to":"deathbill99@gmail.com","subject":"fuckyou"},"body":{"text":"son of a *****","html":"","attachments":""}}},"contextString":"[input] [emailsenter.js:15] 2016-10-21T03:11:43.628Z ","argsString":"{\n \"header\": {\n \"username\": \"deathbill99@gmail.com\",\n \"password\": \"4seasondl\",\n \"to\": \"deathbill99@gmail.com\",\n \"subject\": \"fuckyou\"\n },\n \"body\": {\n \"text\": \"son of a *****\",\n \"html\": \"\",\n \"attachments\": \"\"\n }\n}","message":"[input] [emailsenter.js:15] 2016-10-21T03:11:43.628Z {\n \"header\": {\n \"username\": \"deathbill99@gmail.com\",\n \"password\": \"4seasondl\",\n \"to\": \"deathbill99@gmail.com\",\n \"subject\": \"fuckyou\"\n },\n \"body\": {\n \"text\": \"son of a *****\",\n \"html\": \"\",\n \"attachments\": \"\"\n }\n}"} | ||
55 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477019807221,"location":{"filename":"server.js","line":15}},"args":{"0":"Web server listening at: %s","1":"http://localhost:3000"},"contextString":"","argsString":"Web server listening at: http://localhost:3000","message":"Web server listening at: http://localhost:3000"} | ||
56 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477019807225,"location":{"filename":"server.js","line":18}},"args":{"0":"Browse your REST API at %s%s","1":"http://localhost:3000","2":"/explorer"},"contextString":"","argsString":"Browse your REST API at http://localhost:3000/explorer","message":"Browse your REST API at http://localhost:3000/explorer"} | ||
57 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["input"],"file":true,"time":1477019809876,"location":{"filename":"emailsenter.js","line":15}},"args":{"0":{"header":{"username":"deathbill99@gmail.com","password":"4seasondl","to":"deathbill99@gmail.com","subject":"fuckyou"},"body":{"text":"son of a *****","html":"","attachments":""}}},"contextString":"[input] [emailsenter.js:15] 2016-10-21T03:16:49.876Z ","argsString":"{\n \"header\": {\n \"username\": \"deathbill99@gmail.com\",\n \"password\": \"4seasondl\",\n \"to\": \"deathbill99@gmail.com\",\n \"subject\": \"fuckyou\"\n },\n \"body\": {\n \"text\": \"son of a *****\",\n \"html\": \"\",\n \"attachments\": \"\"\n }\n}","message":"[input] [emailsenter.js:15] 2016-10-21T03:16:49.876Z {\n \"header\": {\n \"username\": \"deathbill99@gmail.com\",\n \"password\": \"4seasondl\",\n \"to\": \"deathbill99@gmail.com\",\n \"subject\": \"fuckyou\"\n },\n \"body\": {\n \"text\": \"son of a *****\",\n \"html\": \"\",\n \"attachments\": \"\"\n }\n}"} | ||
58 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477019851758,"location":{"filename":"server.js","line":18}},"args":{"0":"Browse your REST API at %s%s","1":"http://localhost:3000","2":"/explorer"},"contextString":"","argsString":"Browse your REST API at http://localhost:3000/explorer","message":"Browse your REST API at http://localhost:3000/explorer"} | ||
59 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477019851755,"location":{"filename":"server.js","line":15}},"args":{"0":"Web server listening at: %s","1":"http://localhost:3000"},"contextString":"","argsString":"Web server listening at: http://localhost:3000","message":"Web server listening at: http://localhost:3000"} | ||
60 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477019854235,"location":{"filename":"emailsenter.js","line":23}},"args":{"0":"fuck"},"contextString":"","argsString":"fuck","message":"fuck"} | ||
61 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["input"],"file":true,"time":1477019854233,"location":{"filename":"emailsenter.js","line":15}},"args":{"0":{"header":{"username":"deathbill99@gmail.com","password":"4seasondl","to":"deathbill99@gmail.com","subject":"fuckyou"},"body":{"text":"son of a *****","html":"","attachments":""}}},"contextString":"[input] [emailsenter.js:15] 2016-10-21T03:17:34.233Z ","argsString":"{\n \"header\": {\n \"username\": \"deathbill99@gmail.com\",\n \"password\": \"4seasondl\",\n \"to\": \"deathbill99@gmail.com\",\n \"subject\": \"fuckyou\"\n },\n \"body\": {\n \"text\": \"son of a *****\",\n \"html\": \"\",\n \"attachments\": \"\"\n }\n}","message":"[input] [emailsenter.js:15] 2016-10-21T03:17:34.233Z {\n \"header\": {\n \"username\": \"deathbill99@gmail.com\",\n \"password\": \"4seasondl\",\n \"to\": \"deathbill99@gmail.com\",\n \"subject\": \"fuckyou\"\n },\n \"body\": {\n \"text\": \"son of a *****\",\n \"html\": \"\",\n \"attachments\": \"\"\n }\n}"} | ||
62 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477019918084,"location":{"filename":"server.js","line":15}},"args":{"0":"Web server listening at: %s","1":"http://localhost:3000"},"contextString":"","argsString":"Web server listening at: http://localhost:3000","message":"Web server listening at: http://localhost:3000"} | ||
63 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477019918087,"location":{"filename":"server.js","line":18}},"args":{"0":"Browse your REST API at %s%s","1":"http://localhost:3000","2":"/explorer"},"contextString":"","argsString":"Browse your REST API at http://localhost:3000/explorer","message":"Browse your REST API at http://localhost:3000/explorer"} | ||
64 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["input"],"file":true,"time":1477019919714,"location":{"filename":"emailsenter.js","line":15}},"args":{"0":{"header":{"username":"deathbill99@gmail.com","password":"4seasondl","to":"deathbill99@gmail.com","subject":"fuckyou"},"body":{"text":"son of a *****","html":"","attachments":""}}},"contextString":"[input] [emailsenter.js:15] 2016-10-21T03:18:39.714Z ","argsString":"{\n \"header\": {\n \"username\": \"deathbill99@gmail.com\",\n \"password\": \"4seasondl\",\n \"to\": \"deathbill99@gmail.com\",\n \"subject\": \"fuckyou\"\n },\n \"body\": {\n \"text\": \"son of a *****\",\n \"html\": \"\",\n \"attachments\": \"\"\n }\n}","message":"[input] [emailsenter.js:15] 2016-10-21T03:18:39.714Z {\n \"header\": {\n \"username\": \"deathbill99@gmail.com\",\n \"password\": \"4seasondl\",\n \"to\": \"deathbill99@gmail.com\",\n \"subject\": \"fuckyou\"\n },\n \"body\": {\n \"text\": \"son of a *****\",\n \"html\": \"\",\n \"attachments\": \"\"\n }\n}"} | ||
65 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477019919715,"location":{"filename":"emailsenter.js","line":23}},"args":{"0":"fuck"},"contextString":"","argsString":"fuck","message":"fuck"} | ||
66 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477019919717,"location":{"filename":"emailsenter.js","line":46}},"args":{"0":{"to":"deathbill99@gmail.com","subject":"fuckyou","text":"son of a *****","attachments":"","cc":"","bcc":""}},"contextString":"","argsString":"{\n \"to\": \"deathbill99@gmail.com\",\n \"subject\": \"fuckyou\",\n \"text\": \"son of a *****\",\n \"attachments\": \"\",\n \"cc\": \"\",\n \"bcc\": \"\"\n}","message":"{\n \"to\": \"deathbill99@gmail.com\",\n \"subject\": \"fuckyou\",\n \"text\": \"son of a *****\",\n \"attachments\": \"\",\n \"cc\": \"\",\n \"bcc\": \"\"\n}"} | ||
67 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477019919716,"location":{"filename":"emailsenter.js","line":37}},"args":{"0":"fuckundefined"},"contextString":"","argsString":"fuckundefined","message":"fuckundefined"} | ||
68 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477019919716,"location":{"filename":"emailsenter.js","line":35}},"args":{"0":{}},"contextString":"","argsString":"{}","message":"{}"} | ||
69 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477019984290,"location":{"filename":"server.js","line":15}},"args":{"0":"Web server listening at: %s","1":"http://localhost:3000"},"contextString":"","argsString":"Web server listening at: http://localhost:3000","message":"Web server listening at: http://localhost:3000"} | ||
70 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477019984294,"location":{"filename":"server.js","line":18}},"args":{"0":"Browse your REST API at %s%s","1":"http://localhost:3000","2":"/explorer"},"contextString":"","argsString":"Browse your REST API at http://localhost:3000/explorer","message":"Browse your REST API at http://localhost:3000/explorer"} | ||
71 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477019988413,"location":{"filename":"emailsenter.js","line":23}},"args":{"0":"fuck"},"contextString":"","argsString":"fuck","message":"fuck"} | ||
72 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["input"],"file":true,"time":1477019988412,"location":{"filename":"emailsenter.js","line":15}},"args":{"0":{"header":{"username":"deathbill99@gmail.com","password":"4seasondl","to":"deathbill99@gmail.com","subject":"fuckyou"},"body":{"text":"son of a *****","html":"","attachments":""}}},"contextString":"[input] [emailsenter.js:15] 2016-10-21T03:19:48.412Z ","argsString":"{\n \"header\": {\n \"username\": \"deathbill99@gmail.com\",\n \"password\": \"4seasondl\",\n \"to\": \"deathbill99@gmail.com\",\n \"subject\": \"fuckyou\"\n },\n \"body\": {\n \"text\": \"son of a *****\",\n \"html\": \"\",\n \"attachments\": \"\"\n }\n}","message":"[input] [emailsenter.js:15] 2016-10-21T03:19:48.412Z {\n \"header\": {\n \"username\": \"deathbill99@gmail.com\",\n \"password\": \"4seasondl\",\n \"to\": \"deathbill99@gmail.com\",\n \"subject\": \"fuckyou\"\n },\n \"body\": {\n \"text\": \"son of a *****\",\n \"html\": \"\",\n \"attachments\": \"\"\n }\n}"} | ||
73 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477019988414,"location":{"filename":"emailsenter.js","line":35}},"args":{"0":{}},"contextString":"","argsString":"{}","message":"{}"} | ||
74 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477019988414,"location":{"filename":"emailsenter.js","line":37}},"args":{"0":"fuckundefined"},"contextString":"","argsString":"fuckundefined","message":"fuckundefined"} | ||
75 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477019988414,"location":{"filename":"emailsenter.js","line":46}},"args":{"0":{"to":"deathbill99@gmail.com","subject":"fuckyou","text":"son of a *****","attachments":"","cc":"","bcc":""}},"contextString":"","argsString":"{\n \"to\": \"deathbill99@gmail.com\",\n \"subject\": \"fuckyou\",\n \"text\": \"son of a *****\",\n \"attachments\": \"\",\n \"cc\": \"\",\n \"bcc\": \"\"\n}","message":"{\n \"to\": \"deathbill99@gmail.com\",\n \"subject\": \"fuckyou\",\n \"text\": \"son of a *****\",\n \"attachments\": \"\",\n \"cc\": \"\",\n \"bcc\": \"\"\n}"} | ||
76 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477020080376,"location":{"filename":"server.js","line":15}},"args":{"0":"Web server listening at: %s","1":"http://localhost:3000"},"contextString":"","argsString":"Web server listening at: http://localhost:3000","message":"Web server listening at: http://localhost:3000"} | ||
77 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477020080380,"location":{"filename":"server.js","line":18}},"args":{"0":"Browse your REST API at %s%s","1":"http://localhost:3000","2":"/explorer"},"contextString":"","argsString":"Browse your REST API at http://localhost:3000/explorer","message":"Browse your REST API at http://localhost:3000/explorer"} | ||
78 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477020082154,"location":{"filename":"emailsenter.js","line":23}},"args":{"0":"fuck"},"contextString":"","argsString":"fuck","message":"fuck"} | ||
79 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477020082155,"location":{"filename":"emailsenter.js","line":37}},"args":{"0":"fuck[object Object]"},"contextString":"","argsString":"fuck[object Object]","message":"fuck[object Object]"} | ||
80 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["input"],"file":true,"time":1477020082152,"location":{"filename":"emailsenter.js","line":15}},"args":{"0":{"header":{"username":"deathbill99@gmail.com","password":"4seasondl","to":"deathbill99@gmail.com","subject":"fuckyou"},"body":{"text":"son of a *****","html":"","attachments":""}}},"contextString":"[input] [emailsenter.js:15] 2016-10-21T03:21:22.152Z ","argsString":"{\n \"header\": {\n \"username\": \"deathbill99@gmail.com\",\n \"password\": \"4seasondl\",\n \"to\": \"deathbill99@gmail.com\",\n \"subject\": \"fuckyou\"\n },\n \"body\": {\n \"text\": \"son of a *****\",\n \"html\": \"\",\n \"attachments\": \"\"\n }\n}","message":"[input] [emailsenter.js:15] 2016-10-21T03:21:22.152Z {\n \"header\": {\n \"username\": \"deathbill99@gmail.com\",\n \"password\": \"4seasondl\",\n \"to\": \"deathbill99@gmail.com\",\n \"subject\": \"fuckyou\"\n },\n \"body\": {\n \"text\": \"son of a *****\",\n \"html\": \"\",\n \"attachments\": \"\"\n }\n}"} | ||
81 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477020082155,"location":{"filename":"emailsenter.js","line":46}},"args":{"0":{"to":"deathbill99@gmail.com","subject":"fuckyou","text":"son of a *****","attachments":"","cc":"","bcc":""}},"contextString":"","argsString":"{\n \"to\": \"deathbill99@gmail.com\",\n \"subject\": \"fuckyou\",\n \"text\": \"son of a *****\",\n \"attachments\": \"\",\n \"cc\": \"\",\n \"bcc\": \"\"\n}","message":"{\n \"to\": \"deathbill99@gmail.com\",\n \"subject\": \"fuckyou\",\n \"text\": \"son of a *****\",\n \"attachments\": \"\",\n \"cc\": \"\",\n \"bcc\": \"\"\n}"} | ||
82 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477020166550,"location":{"filename":"server.js","line":18}},"args":{"0":"Browse your REST API at %s%s","1":"http://localhost:3000","2":"/explorer"},"contextString":"","argsString":"Browse your REST API at http://localhost:3000/explorer","message":"Browse your REST API at http://localhost:3000/explorer"} | ||
83 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477020166545,"location":{"filename":"server.js","line":15}},"args":{"0":"Web server listening at: %s","1":"http://localhost:3000"},"contextString":"","argsString":"Web server listening at: http://localhost:3000","message":"Web server listening at: http://localhost:3000"} | ||
84 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477020167789,"location":{"filename":"emailsenter.js","line":23}},"args":{"0":"fuck"},"contextString":"","argsString":"fuck","message":"fuck"} | ||
85 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["input"],"file":true,"time":1477020167787,"location":{"filename":"emailsenter.js","line":15}},"args":{"0":{"header":{"username":"deathbill99@gmail.com","password":"4seasondl","to":"deathbill99@gmail.com","subject":"fuckyou"},"body":{"text":"son of a *****","html":"","attachments":""}}},"contextString":"[input] [emailsenter.js:15] 2016-10-21T03:22:47.787Z ","argsString":"{\n \"header\": {\n \"username\": \"deathbill99@gmail.com\",\n \"password\": \"4seasondl\",\n \"to\": \"deathbill99@gmail.com\",\n \"subject\": \"fuckyou\"\n },\n \"body\": {\n \"text\": \"son of a *****\",\n \"html\": \"\",\n \"attachments\": \"\"\n }\n}","message":"[input] [emailsenter.js:15] 2016-10-21T03:22:47.787Z {\n \"header\": {\n \"username\": \"deathbill99@gmail.com\",\n \"password\": \"4seasondl\",\n \"to\": \"deathbill99@gmail.com\",\n \"subject\": \"fuckyou\"\n },\n \"body\": {\n \"text\": \"son of a *****\",\n \"html\": \"\",\n \"attachments\": \"\"\n }\n}"} | ||
86 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477020167790,"location":{"filename":"emailsenter.js","line":37}},"args":{"0":"fuck[object Object]"},"contextString":"","argsString":"fuck[object Object]","message":"fuck[object Object]"} | ||
87 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477020167790,"location":{"filename":"emailsenter.js","line":46}},"args":{"0":{"to":"deathbill99@gmail.com","subject":"fuckyou","text":"son of a *****","attachments":"","cc":"","bcc":""}},"contextString":"","argsString":"{\n \"to\": \"deathbill99@gmail.com\",\n \"subject\": \"fuckyou\",\n \"text\": \"son of a *****\",\n \"attachments\": \"\",\n \"cc\": \"\",\n \"bcc\": \"\"\n}","message":"{\n \"to\": \"deathbill99@gmail.com\",\n \"subject\": \"fuckyou\",\n \"text\": \"son of a *****\",\n \"attachments\": \"\",\n \"cc\": \"\",\n \"bcc\": \"\"\n}"} | ||
88 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477020243917,"location":{"filename":"server.js","line":18}},"args":{"0":"Browse your REST API at %s%s","1":"http://localhost:3000","2":"/explorer"},"contextString":"","argsString":"Browse your REST API at http://localhost:3000/explorer","message":"Browse your REST API at http://localhost:3000/explorer"} | ||
89 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477020243913,"location":{"filename":"server.js","line":15}},"args":{"0":"Web server listening at: %s","1":"http://localhost:3000"},"contextString":"","argsString":"Web server listening at: http://localhost:3000","message":"Web server listening at: http://localhost:3000"} | ||
90 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["input"],"file":true,"time":1477020248671,"location":{"filename":"emailsenter.js","line":15}},"args":{"0":{"header":{"username":"deathbill99@gmail.com","password":"4seasondl","to":"deathbill99@gmail.com","subject":"fuckyou"},"body":{"text":"son of a *****","html":"","attachments":""}}},"contextString":"[input] [emailsenter.js:15] 2016-10-21T03:24:08.671Z ","argsString":"{\n \"header\": {\n \"username\": \"deathbill99@gmail.com\",\n \"password\": \"4seasondl\",\n \"to\": \"deathbill99@gmail.com\",\n \"subject\": \"fuckyou\"\n },\n \"body\": {\n \"text\": \"son of a *****\",\n \"html\": \"\",\n \"attachments\": \"\"\n }\n}","message":"[input] [emailsenter.js:15] 2016-10-21T03:24:08.671Z {\n \"header\": {\n \"username\": \"deathbill99@gmail.com\",\n \"password\": \"4seasondl\",\n \"to\": \"deathbill99@gmail.com\",\n \"subject\": \"fuckyou\"\n },\n \"body\": {\n \"text\": \"son of a *****\",\n \"html\": \"\",\n \"attachments\": \"\"\n }\n}"} | ||
91 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477020248673,"location":{"filename":"emailsenter.js","line":23}},"args":{"0":"fuck"},"contextString":"","argsString":"fuck","message":"fuck"} | ||
92 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477020248674,"location":{"filename":"emailsenter.js","line":37}},"args":{"0":"fuck[object Object]"},"contextString":"","argsString":"fuck[object Object]","message":"fuck[object Object]"} | ||
93 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477020248674,"location":{"filename":"emailsenter.js","line":46}},"args":{"0":{"to":"deathbill99@gmail.com","subject":"fuckyou","text":"son of a *****","attachments":"","cc":"","bcc":""}},"contextString":"","argsString":"{\n \"to\": \"deathbill99@gmail.com\",\n \"subject\": \"fuckyou\",\n \"text\": \"son of a *****\",\n \"attachments\": \"\",\n \"cc\": \"\",\n \"bcc\": \"\"\n}","message":"{\n \"to\": \"deathbill99@gmail.com\",\n \"subject\": \"fuckyou\",\n \"text\": \"son of a *****\",\n \"attachments\": \"\",\n \"cc\": \"\",\n \"bcc\": \"\"\n}"} | ||
94 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477020291986,"location":{"filename":"server.js","line":15}},"args":{"0":"Web server listening at: %s","1":"http://localhost:3000"},"contextString":"","argsString":"Web server listening at: http://localhost:3000","message":"Web server listening at: http://localhost:3000"} | ||
95 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477020291990,"location":{"filename":"server.js","line":18}},"args":{"0":"Browse your REST API at %s%s","1":"http://localhost:3000","2":"/explorer"},"contextString":"","argsString":"Browse your REST API at http://localhost:3000/explorer","message":"Browse your REST API at http://localhost:3000/explorer"} | ||
96 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477020294348,"location":{"filename":"emailsenter.js","line":23}},"args":{"0":"fuck"},"contextString":"","argsString":"fuck","message":"fuck"} | ||
97 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["input"],"file":true,"time":1477020294346,"location":{"filename":"emailsenter.js","line":15}},"args":{"0":{"header":{"username":"deathbill99@gmail.com","password":"4seasondl","to":"deathbill99@gmail.com","subject":"fuckyou"},"body":{"text":"son of a *****","html":"","attachments":""}}},"contextString":"[input] [emailsenter.js:15] 2016-10-21T03:24:54.346Z ","argsString":"{\n \"header\": {\n \"username\": \"deathbill99@gmail.com\",\n \"password\": \"4seasondl\",\n \"to\": \"deathbill99@gmail.com\",\n \"subject\": \"fuckyou\"\n },\n \"body\": {\n \"text\": \"son of a *****\",\n \"html\": \"\",\n \"attachments\": \"\"\n }\n}","message":"[input] [emailsenter.js:15] 2016-10-21T03:24:54.346Z {\n \"header\": {\n \"username\": \"deathbill99@gmail.com\",\n \"password\": \"4seasondl\",\n \"to\": \"deathbill99@gmail.com\",\n \"subject\": \"fuckyou\"\n },\n \"body\": {\n \"text\": \"son of a *****\",\n \"html\": \"\",\n \"attachments\": \"\"\n }\n}"} | ||
98 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477020294349,"location":{"filename":"emailsenter.js","line":37}},"args":{"0":"fuck[object Object]"},"contextString":"","argsString":"fuck[object Object]","message":"fuck[object Object]"} | ||
99 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477020294349,"location":{"filename":"emailsenter.js","line":46}},"args":{"0":{"to":"deathbill99@gmail.com","subject":"fuckyou","text":"son of a *****","attachments":"","cc":"","bcc":""}},"contextString":"","argsString":"{\n \"to\": \"deathbill99@gmail.com\",\n \"subject\": \"fuckyou\",\n \"text\": \"son of a *****\",\n \"attachments\": \"\",\n \"cc\": \"\",\n \"bcc\": \"\"\n}","message":"{\n \"to\": \"deathbill99@gmail.com\",\n \"subject\": \"fuckyou\",\n \"text\": \"son of a *****\",\n \"attachments\": \"\",\n \"cc\": \"\",\n \"bcc\": \"\"\n}"} | ||
100 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477020297317,"location":{"filename":"emailsenter.js","line":53}},"args":{"0":"Done!"},"contextString":"","argsString":"Done!","message":"Done!"} | ||
101 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["input"],"file":true,"time":1477020342835,"location":{"filename":"emailsenter.js","line":15}},"args":{"0":{"header":{"username":"deathbill99@gmail.com","password":"4seasondl","to":"sittisak.kop@gmail.com","subject":"fuckyou"},"body":{"text":"son of a *****","html":"","attachments":""}}},"contextString":"[input] [emailsenter.js:15] 2016-10-21T03:25:42.835Z ","argsString":"{\n \"header\": {\n \"username\": \"deathbill99@gmail.com\",\n \"password\": \"4seasondl\",\n \"to\": \"sittisak.kop@gmail.com\",\n \"subject\": \"fuckyou\"\n },\n \"body\": {\n \"text\": \"son of a *****\",\n \"html\": \"\",\n \"attachments\": \"\"\n }\n}","message":"[input] [emailsenter.js:15] 2016-10-21T03:25:42.835Z {\n \"header\": {\n \"username\": \"deathbill99@gmail.com\",\n \"password\": \"4seasondl\",\n \"to\": \"sittisak.kop@gmail.com\",\n \"subject\": \"fuckyou\"\n },\n \"body\": {\n \"text\": \"son of a *****\",\n \"html\": \"\",\n \"attachments\": \"\"\n }\n}"} | ||
102 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477020342838,"location":{"filename":"emailsenter.js","line":23}},"args":{"0":"fuck"},"contextString":"","argsString":"fuck","message":"fuck"} | ||
103 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477020342838,"location":{"filename":"emailsenter.js","line":35}},"args":{"0":{}},"contextString":"","argsString":"{}","message":"{}"} | ||
104 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477020342839,"location":{"filename":"emailsenter.js","line":37}},"args":{"0":"fuck[object Object]"},"contextString":"","argsString":"fuck[object Object]","message":"fuck[object Object]"} | ||
105 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477020342839,"location":{"filename":"emailsenter.js","line":46}},"args":{"0":{"to":"sittisak.kop@gmail.com","subject":"fuckyou","text":"son of a *****","attachments":"","cc":"","bcc":""}},"contextString":"","argsString":"{\n \"to\": \"sittisak.kop@gmail.com\",\n \"subject\": \"fuckyou\",\n \"text\": \"son of a *****\",\n \"attachments\": \"\",\n \"cc\": \"\",\n \"bcc\": \"\"\n}","message":"{\n \"to\": \"sittisak.kop@gmail.com\",\n \"subject\": \"fuckyou\",\n \"text\": \"son of a *****\",\n \"attachments\": \"\",\n \"cc\": \"\",\n \"bcc\": \"\"\n}"} | ||
106 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477020345757,"location":{"filename":"emailsenter.js","line":53}},"args":{"0":"Done!"},"contextString":"","argsString":"Done!","message":"Done!"} | ||
107 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477021138811,"location":{"filename":"server.js","line":15}},"args":{"0":"Web server listening at: %s","1":"http://localhost:3000"},"contextString":"","argsString":"Web server listening at: http://localhost:3000","message":"Web server listening at: http://localhost:3000"} | ||
108 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477021138814,"location":{"filename":"server.js","line":18}},"args":{"0":"Browse your REST API at %s%s","1":"http://localhost:3000","2":"/explorer"},"contextString":"","argsString":"Browse your REST API at http://localhost:3000/explorer","message":"Browse your REST API at http://localhost:3000/explorer"} | ||
109 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["input"],"file":true,"time":1477021148302,"location":{"filename":"emailsenter.js","line":57}},"args":{"0":{"header":{"username":"deathbill99@gmail.com","password":"4seasondl","to":"deathbill99@gmail.com","subject":"fuckyou"},"body":{"text":"son of a *****","html":"","attachments":""}}},"contextString":"[input] [emailsenter.js:57] 2016-10-21T03:39:08.302Z ","argsString":"{\n \"header\": {\n \"username\": \"deathbill99@gmail.com\",\n \"password\": \"4seasondl\",\n \"to\": \"deathbill99@gmail.com\",\n \"subject\": \"fuckyou\"\n },\n \"body\": {\n \"text\": \"son of a *****\",\n \"html\": \"\",\n \"attachments\": \"\"\n }\n}","message":"[input] [emailsenter.js:57] 2016-10-21T03:39:08.302Z {\n \"header\": {\n \"username\": \"deathbill99@gmail.com\",\n \"password\": \"4seasondl\",\n \"to\": \"deathbill99@gmail.com\",\n \"subject\": \"fuckyou\"\n },\n \"body\": {\n \"text\": \"son of a *****\",\n \"html\": \"\",\n \"attachments\": \"\"\n }\n}"} | ||
110 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["query output"],"file":true,"time":1477021148311,"location":{"filename":"emailsenter.js","line":72}},"args":{"0":[{"id":1,"app_id":1,"email":"surabill@gmail.com","created_at":"2016-10-20T17:24:54.000Z","modified_at":null,"deleted_at":null}]},"contextString":"[query output] [emailsenter.js:72] 2016-10-21T03:39:08.311Z ","argsString":"[\n {\n \"id\": 1,\n \"app_id\": 1,\n \"email\": \"surabill@gmail.com\",\n \"created_at\": \"2016-10-20T17:24:54.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n }\n]","message":"[query output] [emailsenter.js:72] 2016-10-21T03:39:08.311Z [\n {\n \"id\": 1,\n \"app_id\": 1,\n \"email\": \"surabill@gmail.com\",\n \"created_at\": \"2016-10-20T17:24:54.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n }\n]"} | ||
111 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["output"],"file":true,"time":1477021148313,"location":{"filename":"emailsenter.js","line":80}},"args":{"0":{"resultCode":"20000","resultDescription":"Success","data":{"menu":[{"id":1,"app_id":1,"email":"surabill@gmail.com","created_at":"2016-10-20T17:24:54.000Z","modified_at":null,"deleted_at":null}]}}},"contextString":"[output] [emailsenter.js:80] 2016-10-21T03:39:08.313Z ","argsString":"{\n \"resultCode\": \"20000\",\n \"resultDescription\": \"Success\",\n \"data\": {\n \"menu\": [\n {\n \"id\": 1,\n \"app_id\": 1,\n \"email\": \"surabill@gmail.com\",\n \"created_at\": \"2016-10-20T17:24:54.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n }\n ]\n }\n}","message":"[output] [emailsenter.js:80] 2016-10-21T03:39:08.313Z {\n \"resultCode\": \"20000\",\n \"resultDescription\": \"Success\",\n \"data\": {\n \"menu\": [\n {\n \"id\": 1,\n \"app_id\": 1,\n \"email\": \"surabill@gmail.com\",\n \"created_at\": \"2016-10-20T17:24:54.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n }\n ]\n }\n}"} | ||
112 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477021313512,"location":{"filename":"server.js","line":18}},"args":{"0":"Browse your REST API at %s%s","1":"http://localhost:3000","2":"/explorer"},"contextString":"","argsString":"Browse your REST API at http://localhost:3000/explorer","message":"Browse your REST API at http://localhost:3000/explorer"} | ||
113 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477021313509,"location":{"filename":"server.js","line":15}},"args":{"0":"Web server listening at: %s","1":"http://localhost:3000"},"contextString":"","argsString":"Web server listening at: http://localhost:3000","message":"Web server listening at: http://localhost:3000"} | ||
114 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["input"],"file":true,"time":1477021315511,"location":{"filename":"emailsenter.js","line":57}},"args":{"0":{"header":{"username":"deathbill99@gmail.com","password":"4seasondl","to":"deathbill99@gmail.com,sittisak.kop@gmail.com","subject":"fuckyou"},"body":{"text":"son of a *****","html":"","attachments":""}}},"contextString":"[input] [emailsenter.js:57] 2016-10-21T03:41:55.511Z ","argsString":"{\n \"header\": {\n \"username\": \"deathbill99@gmail.com\",\n \"password\": \"4seasondl\",\n \"to\": \"deathbill99@gmail.com,sittisak.kop@gmail.com\",\n \"subject\": \"fuckyou\"\n },\n \"body\": {\n \"text\": \"son of a *****\",\n \"html\": \"\",\n \"attachments\": \"\"\n }\n}","message":"[input] [emailsenter.js:57] 2016-10-21T03:41:55.511Z {\n \"header\": {\n \"username\": \"deathbill99@gmail.com\",\n \"password\": \"4seasondl\",\n \"to\": \"deathbill99@gmail.com,sittisak.kop@gmail.com\",\n \"subject\": \"fuckyou\"\n },\n \"body\": {\n \"text\": \"son of a *****\",\n \"html\": \"\",\n \"attachments\": \"\"\n }\n}"} | ||
115 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["output"],"file":true,"time":1477021315521,"location":{"filename":"emailsenter.js","line":80}},"args":{"0":{"resultCode":"20000","resultDescription":"Success","data":{"menu":[{"id":1,"app_id":1,"email":"surabill@gmail.com","created_at":"2016-10-20T17:24:54.000Z","modified_at":null,"deleted_at":null}]}}},"contextString":"[output] [emailsenter.js:80] 2016-10-21T03:41:55.521Z ","argsString":"{\n \"resultCode\": \"20000\",\n \"resultDescription\": \"Success\",\n \"data\": {\n \"menu\": [\n {\n \"id\": 1,\n \"app_id\": 1,\n \"email\": \"surabill@gmail.com\",\n \"created_at\": \"2016-10-20T17:24:54.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n }\n ]\n }\n}","message":"[output] [emailsenter.js:80] 2016-10-21T03:41:55.521Z {\n \"resultCode\": \"20000\",\n \"resultDescription\": \"Success\",\n \"data\": {\n \"menu\": [\n {\n \"id\": 1,\n \"app_id\": 1,\n \"email\": \"surabill@gmail.com\",\n \"created_at\": \"2016-10-20T17:24:54.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n }\n ]\n }\n}"} | ||
116 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["query output"],"file":true,"time":1477021315520,"location":{"filename":"emailsenter.js","line":72}},"args":{"0":[{"id":1,"app_id":1,"email":"surabill@gmail.com","created_at":"2016-10-20T17:24:54.000Z","modified_at":null,"deleted_at":null}]},"contextString":"[query output] [emailsenter.js:72] 2016-10-21T03:41:55.520Z ","argsString":"[\n {\n \"id\": 1,\n \"app_id\": 1,\n \"email\": \"surabill@gmail.com\",\n \"created_at\": \"2016-10-20T17:24:54.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n }\n]","message":"[query output] [emailsenter.js:72] 2016-10-21T03:41:55.520Z [\n {\n \"id\": 1,\n \"app_id\": 1,\n \"email\": \"surabill@gmail.com\",\n \"created_at\": \"2016-10-20T17:24:54.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n }\n]"} | ||
117 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["input"],"file":true,"time":1477021366235,"location":{"filename":"emailsenter.js","line":57}},"args":{"0":{"header":{"username":"deathbill99@gmail.com","password":"4seasondl","to":"deathbill99@gmail.com,sittisak.kop@gmail.com","subject":"fuckyou"},"body":{"text":"son of a *****","html":"","attachments":""}}},"contextString":"[input] [emailsenter.js:57] 2016-10-21T03:42:46.235Z ","argsString":"{\n \"header\": {\n \"username\": \"deathbill99@gmail.com\",\n \"password\": \"4seasondl\",\n \"to\": \"deathbill99@gmail.com,sittisak.kop@gmail.com\",\n \"subject\": \"fuckyou\"\n },\n \"body\": {\n \"text\": \"son of a *****\",\n \"html\": \"\",\n \"attachments\": \"\"\n }\n}","message":"[input] [emailsenter.js:57] 2016-10-21T03:42:46.235Z {\n \"header\": {\n \"username\": \"deathbill99@gmail.com\",\n \"password\": \"4seasondl\",\n \"to\": \"deathbill99@gmail.com,sittisak.kop@gmail.com\",\n \"subject\": \"fuckyou\"\n },\n \"body\": {\n \"text\": \"son of a *****\",\n \"html\": \"\",\n \"attachments\": \"\"\n }\n}"} | ||
118 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["query output"],"file":true,"time":1477021366240,"location":{"filename":"emailsenter.js","line":72}},"args":{"0":[{"id":1,"app_id":1,"email":"surabill@gmail.com","created_at":"2016-10-20T17:24:54.000Z","modified_at":null,"deleted_at":null},{"id":2,"app_id":1,"email":"deathbill99@gmail.com","created_at":"2016-10-21T10:42:21.000Z","modified_at":null,"deleted_at":null},{"id":3,"app_id":1,"email":"sittisak.kop@gmail.com","created_at":"2016-10-21T10:42:38.000Z","modified_at":null,"deleted_at":null}]},"contextString":"[query output] [emailsenter.js:72] 2016-10-21T03:42:46.240Z ","argsString":"[\n {\n \"id\": 1,\n \"app_id\": 1,\n \"email\": \"surabill@gmail.com\",\n \"created_at\": \"2016-10-20T17:24:54.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 2,\n \"app_id\": 1,\n \"email\": \"deathbill99@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:21.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 3,\n \"app_id\": 1,\n \"email\": \"sittisak.kop@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:38.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n }\n]","message":"[query output] [emailsenter.js:72] 2016-10-21T03:42:46.240Z [\n {\n \"id\": 1,\n \"app_id\": 1,\n \"email\": \"surabill@gmail.com\",\n \"created_at\": \"2016-10-20T17:24:54.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 2,\n \"app_id\": 1,\n \"email\": \"deathbill99@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:21.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 3,\n \"app_id\": 1,\n \"email\": \"sittisak.kop@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:38.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n }\n]"} | ||
119 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["output"],"file":true,"time":1477021366242,"location":{"filename":"emailsenter.js","line":80}},"args":{"0":{"resultCode":"20000","resultDescription":"Success","data":{"menu":[{"id":1,"app_id":1,"email":"surabill@gmail.com","created_at":"2016-10-20T17:24:54.000Z","modified_at":null,"deleted_at":null},{"id":2,"app_id":1,"email":"deathbill99@gmail.com","created_at":"2016-10-21T10:42:21.000Z","modified_at":null,"deleted_at":null},{"id":3,"app_id":1,"email":"sittisak.kop@gmail.com","created_at":"2016-10-21T10:42:38.000Z","modified_at":null,"deleted_at":null}]}}},"contextString":"[output] [emailsenter.js:80] 2016-10-21T03:42:46.242Z ","argsString":"{\n \"resultCode\": \"20000\",\n \"resultDescription\": \"Success\",\n \"data\": {\n \"menu\": [\n {\n \"id\": 1,\n \"app_id\": 1,\n \"email\": \"surabill@gmail.com\",\n \"created_at\": \"2016-10-20T17:24:54.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 2,\n \"app_id\": 1,\n \"email\": \"deathbill99@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:21.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 3,\n \"app_id\": 1,\n \"email\": \"sittisak.kop@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:38.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n }\n ]\n }\n}","message":"[output] [emailsenter.js:80] 2016-10-21T03:42:46.242Z {\n \"resultCode\": \"20000\",\n \"resultDescription\": \"Success\",\n \"data\": {\n \"menu\": [\n {\n \"id\": 1,\n \"app_id\": 1,\n \"email\": \"surabill@gmail.com\",\n \"created_at\": \"2016-10-20T17:24:54.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 2,\n \"app_id\": 1,\n \"email\": \"deathbill99@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:21.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 3,\n \"app_id\": 1,\n \"email\": \"sittisak.kop@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:38.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n }\n ]\n }\n}"} | ||
120 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["input"],"file":true,"time":1477021378151,"location":{"filename":"emailsenter.js","line":57}},"args":{"0":{"header":{"username":"deathbill99@gmail.com","password":"4seasondl","to":"deathbill99@gmail.com,sittisak.kop@gmail.com","subject":"fuckyou"},"body":{"text":"son of a *****","html":"","attachments":""}}},"contextString":"[input] [emailsenter.js:57] 2016-10-21T03:42:58.151Z ","argsString":"{\n \"header\": {\n \"username\": \"deathbill99@gmail.com\",\n \"password\": \"4seasondl\",\n \"to\": \"deathbill99@gmail.com,sittisak.kop@gmail.com\",\n \"subject\": \"fuckyou\"\n },\n \"body\": {\n \"text\": \"son of a *****\",\n \"html\": \"\",\n \"attachments\": \"\"\n }\n}","message":"[input] [emailsenter.js:57] 2016-10-21T03:42:58.151Z {\n \"header\": {\n \"username\": \"deathbill99@gmail.com\",\n \"password\": \"4seasondl\",\n \"to\": \"deathbill99@gmail.com,sittisak.kop@gmail.com\",\n \"subject\": \"fuckyou\"\n },\n \"body\": {\n \"text\": \"son of a *****\",\n \"html\": \"\",\n \"attachments\": \"\"\n }\n}"} | ||
121 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["query output"],"file":true,"time":1477021378155,"location":{"filename":"emailsenter.js","line":72}},"args":{"0":[{"id":1,"app_id":1,"email":"surabill@gmail.com","created_at":"2016-10-20T17:24:54.000Z","modified_at":null,"deleted_at":null},{"id":2,"app_id":1,"email":"deathbill99@gmail.com","created_at":"2016-10-21T10:42:21.000Z","modified_at":null,"deleted_at":null},{"id":3,"app_id":1,"email":"sittisak.kop@gmail.com","created_at":"2016-10-21T10:42:38.000Z","modified_at":null,"deleted_at":null}]},"contextString":"[query output] [emailsenter.js:72] 2016-10-21T03:42:58.155Z ","argsString":"[\n {\n \"id\": 1,\n \"app_id\": 1,\n \"email\": \"surabill@gmail.com\",\n \"created_at\": \"2016-10-20T17:24:54.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 2,\n \"app_id\": 1,\n \"email\": \"deathbill99@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:21.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 3,\n \"app_id\": 1,\n \"email\": \"sittisak.kop@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:38.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n }\n]","message":"[query output] [emailsenter.js:72] 2016-10-21T03:42:58.155Z [\n {\n \"id\": 1,\n \"app_id\": 1,\n \"email\": \"surabill@gmail.com\",\n \"created_at\": \"2016-10-20T17:24:54.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 2,\n \"app_id\": 1,\n \"email\": \"deathbill99@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:21.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 3,\n \"app_id\": 1,\n \"email\": \"sittisak.kop@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:38.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n }\n]"} | ||
122 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["output"],"file":true,"time":1477021378156,"location":{"filename":"emailsenter.js","line":80}},"args":{"0":{"resultCode":"20000","resultDescription":"Success","data":{"menu":[{"id":1,"app_id":1,"email":"surabill@gmail.com","created_at":"2016-10-20T17:24:54.000Z","modified_at":null,"deleted_at":null},{"id":2,"app_id":1,"email":"deathbill99@gmail.com","created_at":"2016-10-21T10:42:21.000Z","modified_at":null,"deleted_at":null},{"id":3,"app_id":1,"email":"sittisak.kop@gmail.com","created_at":"2016-10-21T10:42:38.000Z","modified_at":null,"deleted_at":null}]}}},"contextString":"[output] [emailsenter.js:80] 2016-10-21T03:42:58.156Z ","argsString":"{\n \"resultCode\": \"20000\",\n \"resultDescription\": \"Success\",\n \"data\": {\n \"menu\": [\n {\n \"id\": 1,\n \"app_id\": 1,\n \"email\": \"surabill@gmail.com\",\n \"created_at\": \"2016-10-20T17:24:54.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 2,\n \"app_id\": 1,\n \"email\": \"deathbill99@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:21.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 3,\n \"app_id\": 1,\n \"email\": \"sittisak.kop@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:38.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n }\n ]\n }\n}","message":"[output] [emailsenter.js:80] 2016-10-21T03:42:58.156Z {\n \"resultCode\": \"20000\",\n \"resultDescription\": \"Success\",\n \"data\": {\n \"menu\": [\n {\n \"id\": 1,\n \"app_id\": 1,\n \"email\": \"surabill@gmail.com\",\n \"created_at\": \"2016-10-20T17:24:54.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 2,\n \"app_id\": 1,\n \"email\": \"deathbill99@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:21.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 3,\n \"app_id\": 1,\n \"email\": \"sittisak.kop@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:38.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n }\n ]\n }\n}"} | ||
123 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["input"],"file":true,"time":1477021399732,"location":{"filename":"emailsenter.js","line":57}},"args":{"0":{"header":{"username":"deathbill99@gmail.com","password":"4seasondl","to":"deathbill99@gmail.com,sittisak.kop@gmail.com","subject":"fuckyou"},"body":{"text":"son of a *****","html":"","attachments":""}}},"contextString":"[input] [emailsenter.js:57] 2016-10-21T03:43:19.732Z ","argsString":"{\n \"header\": {\n \"username\": \"deathbill99@gmail.com\",\n \"password\": \"4seasondl\",\n \"to\": \"deathbill99@gmail.com,sittisak.kop@gmail.com\",\n \"subject\": \"fuckyou\"\n },\n \"body\": {\n \"text\": \"son of a *****\",\n \"html\": \"\",\n \"attachments\": \"\"\n }\n}","message":"[input] [emailsenter.js:57] 2016-10-21T03:43:19.732Z {\n \"header\": {\n \"username\": \"deathbill99@gmail.com\",\n \"password\": \"4seasondl\",\n \"to\": \"deathbill99@gmail.com,sittisak.kop@gmail.com\",\n \"subject\": \"fuckyou\"\n },\n \"body\": {\n \"text\": \"son of a *****\",\n \"html\": \"\",\n \"attachments\": \"\"\n }\n}"} | ||
124 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["query output"],"file":true,"time":1477021399736,"location":{"filename":"emailsenter.js","line":72}},"args":{"0":[{"id":1,"app_id":1,"email":"surabill@gmail.com","created_at":"2016-10-20T17:24:54.000Z","modified_at":null,"deleted_at":null},{"id":2,"app_id":1,"email":"deathbill99@gmail.com","created_at":"2016-10-21T10:42:21.000Z","modified_at":null,"deleted_at":null},{"id":3,"app_id":1,"email":"sittisak.kop@gmail.com","created_at":"2016-10-21T10:42:38.000Z","modified_at":null,"deleted_at":null},{"id":4,"app_id":2,"email":"sssba@gmail.com","created_at":"2016-10-21T10:43:16.000Z","modified_at":null,"deleted_at":null}]},"contextString":"[query output] [emailsenter.js:72] 2016-10-21T03:43:19.736Z ","argsString":"[\n {\n \"id\": 1,\n \"app_id\": 1,\n \"email\": \"surabill@gmail.com\",\n \"created_at\": \"2016-10-20T17:24:54.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 2,\n \"app_id\": 1,\n \"email\": \"deathbill99@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:21.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 3,\n \"app_id\": 1,\n \"email\": \"sittisak.kop@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:38.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 4,\n \"app_id\": 2,\n \"email\": \"sssba@gmail.com\",\n \"created_at\": \"2016-10-21T10:43:16.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n }\n]","message":"[query output] [emailsenter.js:72] 2016-10-21T03:43:19.736Z [\n {\n \"id\": 1,\n \"app_id\": 1,\n \"email\": \"surabill@gmail.com\",\n \"created_at\": \"2016-10-20T17:24:54.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 2,\n \"app_id\": 1,\n \"email\": \"deathbill99@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:21.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 3,\n \"app_id\": 1,\n \"email\": \"sittisak.kop@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:38.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 4,\n \"app_id\": 2,\n \"email\": \"sssba@gmail.com\",\n \"created_at\": \"2016-10-21T10:43:16.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n }\n]"} | ||
125 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["output"],"file":true,"time":1477021399737,"location":{"filename":"emailsenter.js","line":80}},"args":{"0":{"resultCode":"20000","resultDescription":"Success","data":{"menu":[{"id":1,"app_id":1,"email":"surabill@gmail.com","created_at":"2016-10-20T17:24:54.000Z","modified_at":null,"deleted_at":null},{"id":2,"app_id":1,"email":"deathbill99@gmail.com","created_at":"2016-10-21T10:42:21.000Z","modified_at":null,"deleted_at":null},{"id":3,"app_id":1,"email":"sittisak.kop@gmail.com","created_at":"2016-10-21T10:42:38.000Z","modified_at":null,"deleted_at":null},{"id":4,"app_id":2,"email":"sssba@gmail.com","created_at":"2016-10-21T10:43:16.000Z","modified_at":null,"deleted_at":null}]}}},"contextString":"[output] [emailsenter.js:80] 2016-10-21T03:43:19.737Z ","argsString":"{\n \"resultCode\": \"20000\",\n \"resultDescription\": \"Success\",\n \"data\": {\n \"menu\": [\n {\n \"id\": 1,\n \"app_id\": 1,\n \"email\": \"surabill@gmail.com\",\n \"created_at\": \"2016-10-20T17:24:54.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 2,\n \"app_id\": 1,\n \"email\": \"deathbill99@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:21.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 3,\n \"app_id\": 1,\n \"email\": \"sittisak.kop@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:38.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 4,\n \"app_id\": 2,\n \"email\": \"sssba@gmail.com\",\n \"created_at\": \"2016-10-21T10:43:16.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n }\n ]\n }\n}","message":"[output] [emailsenter.js:80] 2016-10-21T03:43:19.737Z {\n \"resultCode\": \"20000\",\n \"resultDescription\": \"Success\",\n \"data\": {\n \"menu\": [\n {\n \"id\": 1,\n \"app_id\": 1,\n \"email\": \"surabill@gmail.com\",\n \"created_at\": \"2016-10-20T17:24:54.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 2,\n \"app_id\": 1,\n \"email\": \"deathbill99@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:21.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 3,\n \"app_id\": 1,\n \"email\": \"sittisak.kop@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:38.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 4,\n \"app_id\": 2,\n \"email\": \"sssba@gmail.com\",\n \"created_at\": \"2016-10-21T10:43:16.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n }\n ]\n }\n}"} | ||
126 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["input"],"file":true,"time":1477021420817,"location":{"filename":"emailsenter.js","line":57}},"args":{"0":{"app_id":"2","header":{"username":"deathbill99@gmail.com","password":"4seasondl","to":"deathbill99@gmail.com,sittisak.kop@gmail.com","subject":"fuckyou"},"body":{"text":"son of a *****","html":"","attachments":""}}},"contextString":"[input] [emailsenter.js:57] 2016-10-21T03:43:40.817Z ","argsString":"{\n \"app_id\": \"2\",\n \"header\": {\n \"username\": \"deathbill99@gmail.com\",\n \"password\": \"4seasondl\",\n \"to\": \"deathbill99@gmail.com,sittisak.kop@gmail.com\",\n \"subject\": \"fuckyou\"\n },\n \"body\": {\n \"text\": \"son of a *****\",\n \"html\": \"\",\n \"attachments\": \"\"\n }\n}","message":"[input] [emailsenter.js:57] 2016-10-21T03:43:40.817Z {\n \"app_id\": \"2\",\n \"header\": {\n \"username\": \"deathbill99@gmail.com\",\n \"password\": \"4seasondl\",\n \"to\": \"deathbill99@gmail.com,sittisak.kop@gmail.com\",\n \"subject\": \"fuckyou\"\n },\n \"body\": {\n \"text\": \"son of a *****\",\n \"html\": \"\",\n \"attachments\": \"\"\n }\n}"} | ||
127 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["query output"],"file":true,"time":1477021420825,"location":{"filename":"emailsenter.js","line":72}},"args":{"0":[{"id":4,"app_id":2,"email":"sssba@gmail.com","created_at":"2016-10-21T10:43:16.000Z","modified_at":null,"deleted_at":null}]},"contextString":"[query output] [emailsenter.js:72] 2016-10-21T03:43:40.825Z ","argsString":"[\n {\n \"id\": 4,\n \"app_id\": 2,\n \"email\": \"sssba@gmail.com\",\n \"created_at\": \"2016-10-21T10:43:16.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n }\n]","message":"[query output] [emailsenter.js:72] 2016-10-21T03:43:40.825Z [\n {\n \"id\": 4,\n \"app_id\": 2,\n \"email\": \"sssba@gmail.com\",\n \"created_at\": \"2016-10-21T10:43:16.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n }\n]"} | ||
128 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["output"],"file":true,"time":1477021420826,"location":{"filename":"emailsenter.js","line":80}},"args":{"0":{"resultCode":"20000","resultDescription":"Success","data":{"menu":[{"id":4,"app_id":2,"email":"sssba@gmail.com","created_at":"2016-10-21T10:43:16.000Z","modified_at":null,"deleted_at":null}]}}},"contextString":"[output] [emailsenter.js:80] 2016-10-21T03:43:40.826Z ","argsString":"{\n \"resultCode\": \"20000\",\n \"resultDescription\": \"Success\",\n \"data\": {\n \"menu\": [\n {\n \"id\": 4,\n \"app_id\": 2,\n \"email\": \"sssba@gmail.com\",\n \"created_at\": \"2016-10-21T10:43:16.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n }\n ]\n }\n}","message":"[output] [emailsenter.js:80] 2016-10-21T03:43:40.826Z {\n \"resultCode\": \"20000\",\n \"resultDescription\": \"Success\",\n \"data\": {\n \"menu\": [\n {\n \"id\": 4,\n \"app_id\": 2,\n \"email\": \"sssba@gmail.com\",\n \"created_at\": \"2016-10-21T10:43:16.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n }\n ]\n }\n}"} | ||
129 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["input"],"file":true,"time":1477021429232,"location":{"filename":"emailsenter.js","line":57}},"args":{"0":{"app_id":"1","header":{"username":"deathbill99@gmail.com","password":"4seasondl","to":"deathbill99@gmail.com,sittisak.kop@gmail.com","subject":"fuckyou"},"body":{"text":"son of a *****","html":"","attachments":""}}},"contextString":"[input] [emailsenter.js:57] 2016-10-21T03:43:49.232Z ","argsString":"{\n \"app_id\": \"1\",\n \"header\": {\n \"username\": \"deathbill99@gmail.com\",\n \"password\": \"4seasondl\",\n \"to\": \"deathbill99@gmail.com,sittisak.kop@gmail.com\",\n \"subject\": \"fuckyou\"\n },\n \"body\": {\n \"text\": \"son of a *****\",\n \"html\": \"\",\n \"attachments\": \"\"\n }\n}","message":"[input] [emailsenter.js:57] 2016-10-21T03:43:49.232Z {\n \"app_id\": \"1\",\n \"header\": {\n \"username\": \"deathbill99@gmail.com\",\n \"password\": \"4seasondl\",\n \"to\": \"deathbill99@gmail.com,sittisak.kop@gmail.com\",\n \"subject\": \"fuckyou\"\n },\n \"body\": {\n \"text\": \"son of a *****\",\n \"html\": \"\",\n \"attachments\": \"\"\n }\n}"} | ||
130 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["output"],"file":true,"time":1477021429239,"location":{"filename":"emailsenter.js","line":80}},"args":{"0":{"resultCode":"20000","resultDescription":"Success","data":{"menu":[{"id":1,"app_id":1,"email":"surabill@gmail.com","created_at":"2016-10-20T17:24:54.000Z","modified_at":null,"deleted_at":null},{"id":2,"app_id":1,"email":"deathbill99@gmail.com","created_at":"2016-10-21T10:42:21.000Z","modified_at":null,"deleted_at":null},{"id":3,"app_id":1,"email":"sittisak.kop@gmail.com","created_at":"2016-10-21T10:42:38.000Z","modified_at":null,"deleted_at":null}]}}},"contextString":"[output] [emailsenter.js:80] 2016-10-21T03:43:49.239Z ","argsString":"{\n \"resultCode\": \"20000\",\n \"resultDescription\": \"Success\",\n \"data\": {\n \"menu\": [\n {\n \"id\": 1,\n \"app_id\": 1,\n \"email\": \"surabill@gmail.com\",\n \"created_at\": \"2016-10-20T17:24:54.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 2,\n \"app_id\": 1,\n \"email\": \"deathbill99@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:21.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 3,\n \"app_id\": 1,\n \"email\": \"sittisak.kop@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:38.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n }\n ]\n }\n}","message":"[output] [emailsenter.js:80] 2016-10-21T03:43:49.239Z {\n \"resultCode\": \"20000\",\n \"resultDescription\": \"Success\",\n \"data\": {\n \"menu\": [\n {\n \"id\": 1,\n \"app_id\": 1,\n \"email\": \"surabill@gmail.com\",\n \"created_at\": \"2016-10-20T17:24:54.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 2,\n \"app_id\": 1,\n \"email\": \"deathbill99@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:21.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 3,\n \"app_id\": 1,\n \"email\": \"sittisak.kop@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:38.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n }\n ]\n }\n}"} | ||
131 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["query output"],"file":true,"time":1477021429238,"location":{"filename":"emailsenter.js","line":72}},"args":{"0":[{"id":1,"app_id":1,"email":"surabill@gmail.com","created_at":"2016-10-20T17:24:54.000Z","modified_at":null,"deleted_at":null},{"id":2,"app_id":1,"email":"deathbill99@gmail.com","created_at":"2016-10-21T10:42:21.000Z","modified_at":null,"deleted_at":null},{"id":3,"app_id":1,"email":"sittisak.kop@gmail.com","created_at":"2016-10-21T10:42:38.000Z","modified_at":null,"deleted_at":null}]},"contextString":"[query output] [emailsenter.js:72] 2016-10-21T03:43:49.238Z ","argsString":"[\n {\n \"id\": 1,\n \"app_id\": 1,\n \"email\": \"surabill@gmail.com\",\n \"created_at\": \"2016-10-20T17:24:54.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 2,\n \"app_id\": 1,\n \"email\": \"deathbill99@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:21.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 3,\n \"app_id\": 1,\n \"email\": \"sittisak.kop@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:38.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n }\n]","message":"[query output] [emailsenter.js:72] 2016-10-21T03:43:49.238Z [\n {\n \"id\": 1,\n \"app_id\": 1,\n \"email\": \"surabill@gmail.com\",\n \"created_at\": \"2016-10-20T17:24:54.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 2,\n \"app_id\": 1,\n \"email\": \"deathbill99@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:21.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 3,\n \"app_id\": 1,\n \"email\": \"sittisak.kop@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:38.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n }\n]"} | ||
132 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477021564386,"location":{"filename":"server.js","line":15}},"args":{"0":"Web server listening at: %s","1":"http://localhost:3000"},"contextString":"","argsString":"Web server listening at: http://localhost:3000","message":"Web server listening at: http://localhost:3000"} | ||
133 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477021564389,"location":{"filename":"server.js","line":18}},"args":{"0":"Browse your REST API at %s%s","1":"http://localhost:3000","2":"/explorer"},"contextString":"","argsString":"Browse your REST API at http://localhost:3000/explorer","message":"Browse your REST API at http://localhost:3000/explorer"} | ||
134 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["input"],"file":true,"time":1477021566125,"location":{"filename":"emailsenter.js","line":57}},"args":{"0":{"app_id":"1","header":{"username":"deathbill99@gmail.com","password":"4seasondl","to":"deathbill99@gmail.com,sittisak.kop@gmail.com","subject":"fuckyou"},"body":{"text":"son of a *****","html":"","attachments":""}}},"contextString":"[input] [emailsenter.js:57] 2016-10-21T03:46:06.125Z ","argsString":"{\n \"app_id\": \"1\",\n \"header\": {\n \"username\": \"deathbill99@gmail.com\",\n \"password\": \"4seasondl\",\n \"to\": \"deathbill99@gmail.com,sittisak.kop@gmail.com\",\n \"subject\": \"fuckyou\"\n },\n \"body\": {\n \"text\": \"son of a *****\",\n \"html\": \"\",\n \"attachments\": \"\"\n }\n}","message":"[input] [emailsenter.js:57] 2016-10-21T03:46:06.125Z {\n \"app_id\": \"1\",\n \"header\": {\n \"username\": \"deathbill99@gmail.com\",\n \"password\": \"4seasondl\",\n \"to\": \"deathbill99@gmail.com,sittisak.kop@gmail.com\",\n \"subject\": \"fuckyou\"\n },\n \"body\": {\n \"text\": \"son of a *****\",\n \"html\": \"\",\n \"attachments\": \"\"\n }\n}"} | ||
135 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["query output"],"file":true,"time":1477021566136,"location":{"filename":"emailsenter.js","line":73}},"args":{"0":[{"id":1,"app_id":1,"email":"surabill@gmail.com","created_at":"2016-10-20T17:24:54.000Z","modified_at":null,"deleted_at":null},{"id":2,"app_id":1,"email":"deathbill99@gmail.com","created_at":"2016-10-21T10:42:21.000Z","modified_at":null,"deleted_at":null},{"id":3,"app_id":1,"email":"sittisak.kop@gmail.com","created_at":"2016-10-21T10:42:38.000Z","modified_at":null,"deleted_at":null}]},"contextString":"[query output] [emailsenter.js:73] 2016-10-21T03:46:06.136Z ","argsString":"[\n {\n \"id\": 1,\n \"app_id\": 1,\n \"email\": \"surabill@gmail.com\",\n \"created_at\": \"2016-10-20T17:24:54.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 2,\n \"app_id\": 1,\n \"email\": \"deathbill99@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:21.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 3,\n \"app_id\": 1,\n \"email\": \"sittisak.kop@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:38.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n }\n]","message":"[query output] [emailsenter.js:73] 2016-10-21T03:46:06.136Z [\n {\n \"id\": 1,\n \"app_id\": 1,\n \"email\": \"surabill@gmail.com\",\n \"created_at\": \"2016-10-20T17:24:54.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 2,\n \"app_id\": 1,\n \"email\": \"deathbill99@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:21.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 3,\n \"app_id\": 1,\n \"email\": \"sittisak.kop@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:38.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n }\n]"} | ||
136 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477021566138,"location":{"filename":"emailsenter.js","line":77}},"args":{"0":"surabill@gmail.com,deathbill99@gmail.com,sittisak.kop@gmail.com,"},"contextString":"","argsString":"surabill@gmail.com,deathbill99@gmail.com,sittisak.kop@gmail.com,","message":"surabill@gmail.com,deathbill99@gmail.com,sittisak.kop@gmail.com,"} | ||
137 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["output"],"file":true,"time":1477021566138,"location":{"filename":"emailsenter.js","line":85}},"args":{"0":{"resultCode":"20000","resultDescription":"Success","data":{"menu":[{"id":1,"app_id":1,"email":"surabill@gmail.com","created_at":"2016-10-20T17:24:54.000Z","modified_at":null,"deleted_at":null},{"id":2,"app_id":1,"email":"deathbill99@gmail.com","created_at":"2016-10-21T10:42:21.000Z","modified_at":null,"deleted_at":null},{"id":3,"app_id":1,"email":"sittisak.kop@gmail.com","created_at":"2016-10-21T10:42:38.000Z","modified_at":null,"deleted_at":null}]}}},"contextString":"[output] [emailsenter.js:85] 2016-10-21T03:46:06.138Z ","argsString":"{\n \"resultCode\": \"20000\",\n \"resultDescription\": \"Success\",\n \"data\": {\n \"menu\": [\n {\n \"id\": 1,\n \"app_id\": 1,\n \"email\": \"surabill@gmail.com\",\n \"created_at\": \"2016-10-20T17:24:54.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 2,\n \"app_id\": 1,\n \"email\": \"deathbill99@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:21.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 3,\n \"app_id\": 1,\n \"email\": \"sittisak.kop@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:38.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n }\n ]\n }\n}","message":"[output] [emailsenter.js:85] 2016-10-21T03:46:06.138Z {\n \"resultCode\": \"20000\",\n \"resultDescription\": \"Success\",\n \"data\": {\n \"menu\": [\n {\n \"id\": 1,\n \"app_id\": 1,\n \"email\": \"surabill@gmail.com\",\n \"created_at\": \"2016-10-20T17:24:54.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 2,\n \"app_id\": 1,\n \"email\": \"deathbill99@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:21.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 3,\n \"app_id\": 1,\n \"email\": \"sittisak.kop@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:38.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n }\n ]\n }\n}"} | ||
138 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477022383196,"location":{"filename":"server.js","line":18}},"args":{"0":"Browse your REST API at %s%s","1":"http://localhost:3000","2":"/explorer"},"contextString":"","argsString":"Browse your REST API at http://localhost:3000/explorer","message":"Browse your REST API at http://localhost:3000/explorer"} | ||
139 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477022383192,"location":{"filename":"server.js","line":15}},"args":{"0":"Web server listening at: %s","1":"http://localhost:3000"},"contextString":"","argsString":"Web server listening at: http://localhost:3000","message":"Web server listening at: http://localhost:3000"} | ||
140 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["input"],"file":true,"time":1477022386651,"location":{"filename":"emailsenter.js","line":68}},"args":{"0":{"app_id":"1","header":{"username":"deathbill99@gmail.com","password":"4seasondl","to":"deathbill99@gmail.com,sittisak.kop@gmail.com","subject":"fuckyou"},"body":{"text":"son of a *****","html":"","attachments":""}}},"contextString":"[input] [emailsenter.js:68] 2016-10-21T03:59:46.651Z ","argsString":"{\n \"app_id\": \"1\",\n \"header\": {\n \"username\": \"deathbill99@gmail.com\",\n \"password\": \"4seasondl\",\n \"to\": \"deathbill99@gmail.com,sittisak.kop@gmail.com\",\n \"subject\": \"fuckyou\"\n },\n \"body\": {\n \"text\": \"son of a *****\",\n \"html\": \"\",\n \"attachments\": \"\"\n }\n}","message":"[input] [emailsenter.js:68] 2016-10-21T03:59:46.651Z {\n \"app_id\": \"1\",\n \"header\": {\n \"username\": \"deathbill99@gmail.com\",\n \"password\": \"4seasondl\",\n \"to\": \"deathbill99@gmail.com,sittisak.kop@gmail.com\",\n \"subject\": \"fuckyou\"\n },\n \"body\": {\n \"text\": \"son of a *****\",\n \"html\": \"\",\n \"attachments\": \"\"\n }\n}"} | ||
141 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["query output"],"file":true,"time":1477022386660,"location":{"filename":"emailsenter.js","line":85}},"args":{"0":[{"id":1,"app_id":1,"email":"surabill@gmail.com","created_at":"2016-10-20T17:24:54.000Z","modified_at":null,"deleted_at":null},{"id":2,"app_id":1,"email":"deathbill99@gmail.com","created_at":"2016-10-21T10:42:21.000Z","modified_at":null,"deleted_at":null},{"id":3,"app_id":1,"email":"sittisak.kop@gmail.com","created_at":"2016-10-21T10:42:38.000Z","modified_at":null,"deleted_at":null}]},"contextString":"[query output] [emailsenter.js:85] 2016-10-21T03:59:46.660Z ","argsString":"[\n {\n \"id\": 1,\n \"app_id\": 1,\n \"email\": \"surabill@gmail.com\",\n \"created_at\": \"2016-10-20T17:24:54.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 2,\n \"app_id\": 1,\n \"email\": \"deathbill99@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:21.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 3,\n \"app_id\": 1,\n \"email\": \"sittisak.kop@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:38.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n }\n]","message":"[query output] [emailsenter.js:85] 2016-10-21T03:59:46.660Z [\n {\n \"id\": 1,\n \"app_id\": 1,\n \"email\": \"surabill@gmail.com\",\n \"created_at\": \"2016-10-20T17:24:54.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 2,\n \"app_id\": 1,\n \"email\": \"deathbill99@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:21.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 3,\n \"app_id\": 1,\n \"email\": \"sittisak.kop@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:38.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n }\n]"} | ||
142 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477022584675,"location":{"filename":"server.js","line":15}},"args":{"0":"Web server listening at: %s","1":"http://localhost:3000"},"contextString":"","argsString":"Web server listening at: http://localhost:3000","message":"Web server listening at: http://localhost:3000"} | ||
143 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477022584679,"location":{"filename":"server.js","line":18}},"args":{"0":"Browse your REST API at %s%s","1":"http://localhost:3000","2":"/explorer"},"contextString":"","argsString":"Browse your REST API at http://localhost:3000/explorer","message":"Browse your REST API at http://localhost:3000/explorer"} | ||
144 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["input"],"file":true,"time":1477022592019,"location":{"filename":"emailsenter.js","line":68}},"args":{"0":{"app_id":"2","header":{"username":"deathbill99@gmail.com","password":"4seasondl","to":"deathbill99@gmail.com,sittisak.kop@gmail.com","subject":"fuckyou"},"body":{"text":"son of a *****","html":"","attachments":""}}},"contextString":"[input] [emailsenter.js:68] 2016-10-21T04:03:12.019Z ","argsString":"{\n \"app_id\": \"2\",\n \"header\": {\n \"username\": \"deathbill99@gmail.com\",\n \"password\": \"4seasondl\",\n \"to\": \"deathbill99@gmail.com,sittisak.kop@gmail.com\",\n \"subject\": \"fuckyou\"\n },\n \"body\": {\n \"text\": \"son of a *****\",\n \"html\": \"\",\n \"attachments\": \"\"\n }\n}","message":"[input] [emailsenter.js:68] 2016-10-21T04:03:12.019Z {\n \"app_id\": \"2\",\n \"header\": {\n \"username\": \"deathbill99@gmail.com\",\n \"password\": \"4seasondl\",\n \"to\": \"deathbill99@gmail.com,sittisak.kop@gmail.com\",\n \"subject\": \"fuckyou\"\n },\n \"body\": {\n \"text\": \"son of a *****\",\n \"html\": \"\",\n \"attachments\": \"\"\n }\n}"} | ||
145 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["query output"],"file":true,"time":1477022592029,"location":{"filename":"emailsenter.js","line":85}},"args":{"0":[{"id":4,"app_id":2,"email":"sssba@gmail.com","created_at":"2016-10-21T10:43:16.000Z","modified_at":null,"deleted_at":null}]},"contextString":"[query output] [emailsenter.js:85] 2016-10-21T04:03:12.029Z ","argsString":"[\n {\n \"id\": 4,\n \"app_id\": 2,\n \"email\": \"sssba@gmail.com\",\n \"created_at\": \"2016-10-21T10:43:16.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n }\n]","message":"[query output] [emailsenter.js:85] 2016-10-21T04:03:12.029Z [\n {\n \"id\": 4,\n \"app_id\": 2,\n \"email\": \"sssba@gmail.com\",\n \"created_at\": \"2016-10-21T10:43:16.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n }\n]"} | ||
146 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477022592036,"location":{"filename":"emailsenter.js","line":137}},"args":{"0":{"resultCode":"50000","resultDescription":"mail error: Missing or Invalid Param"}},"contextString":"","argsString":"{\n \"resultCode\": \"50000\",\n \"resultDescription\": \"mail error: Missing or Invalid Param\"\n}","message":"{\n \"resultCode\": \"50000\",\n \"resultDescription\": \"mail error: Missing or Invalid Param\"\n}"} | ||
147 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477022633924,"location":{"filename":"server.js","line":15}},"args":{"0":"Web server listening at: %s","1":"http://localhost:3000"},"contextString":"","argsString":"Web server listening at: http://localhost:3000","message":"Web server listening at: http://localhost:3000"} | ||
148 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477022633928,"location":{"filename":"server.js","line":18}},"args":{"0":"Browse your REST API at %s%s","1":"http://localhost:3000","2":"/explorer"},"contextString":"","argsString":"Browse your REST API at http://localhost:3000/explorer","message":"Browse your REST API at http://localhost:3000/explorer"} | ||
149 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477023605293,"location":{"filename":"server.js","line":15}},"args":{"0":"Web server listening at: %s","1":"http://localhost:3000"},"contextString":"","argsString":"Web server listening at: http://localhost:3000","message":"Web server listening at: http://localhost:3000"} | ||
150 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477023605297,"location":{"filename":"server.js","line":18}},"args":{"0":"Browse your REST API at %s%s","1":"http://localhost:3000","2":"/explorer"},"contextString":"","argsString":"Browse your REST API at http://localhost:3000/explorer","message":"Browse your REST API at http://localhost:3000/explorer"} | ||
151 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["input"],"file":true,"time":1477023608035,"location":{"filename":"emailsenter.js","line":70}},"args":{"0":{"app_id":"1","header":{"subject":"fuckyou"},"body":{"text":"son of a *****","html":"","attachments":""}}},"contextString":"[input] [emailsenter.js:70] 2016-10-21T04:20:08.035Z ","argsString":"{\n \"app_id\": \"1\",\n \"header\": {\n \"subject\": \"fuckyou\"\n },\n \"body\": {\n \"text\": \"son of a *****\",\n \"html\": \"\",\n \"attachments\": \"\"\n }\n}","message":"[input] [emailsenter.js:70] 2016-10-21T04:20:08.035Z {\n \"app_id\": \"1\",\n \"header\": {\n \"subject\": \"fuckyou\"\n },\n \"body\": {\n \"text\": \"son of a *****\",\n \"html\": \"\",\n \"attachments\": \"\"\n }\n}"} | ||
152 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477023646518,"location":{"filename":"server.js","line":15}},"args":{"0":"Web server listening at: %s","1":"http://localhost:3000"},"contextString":"","argsString":"Web server listening at: http://localhost:3000","message":"Web server listening at: http://localhost:3000"} | ||
153 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477023646521,"location":{"filename":"server.js","line":18}},"args":{"0":"Browse your REST API at %s%s","1":"http://localhost:3000","2":"/explorer"},"contextString":"","argsString":"Browse your REST API at http://localhost:3000/explorer","message":"Browse your REST API at http://localhost:3000/explorer"} | ||
154 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["input"],"file":true,"time":1477023659993,"location":{"filename":"emailsenter.js","line":70}},"args":{"0":{"app_id":"1","header":{"subject":"fuckyou"},"body":{"text":"son of a *****","html":"","attachments":""}}},"contextString":"[input] [emailsenter.js:70] 2016-10-21T04:20:59.993Z ","argsString":"{\n \"app_id\": \"1\",\n \"header\": {\n \"subject\": \"fuckyou\"\n },\n \"body\": {\n \"text\": \"son of a *****\",\n \"html\": \"\",\n \"attachments\": \"\"\n }\n}","message":"[input] [emailsenter.js:70] 2016-10-21T04:20:59.993Z {\n \"app_id\": \"1\",\n \"header\": {\n \"subject\": \"fuckyou\"\n },\n \"body\": {\n \"text\": \"son of a *****\",\n \"html\": \"\",\n \"attachments\": \"\"\n }\n}"} | ||
155 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["query output"],"file":true,"time":1477023660003,"location":{"filename":"emailsenter.js","line":87}},"args":{"0":[{"id":1,"app_id":1,"email":"surabill@gmail.com","created_at":"2016-10-20T17:24:54.000Z","modified_at":null,"deleted_at":null},{"id":2,"app_id":1,"email":"deathbill99@gmail.com","created_at":"2016-10-21T10:42:21.000Z","modified_at":null,"deleted_at":null},{"id":3,"app_id":1,"email":"sittisak.kop@gmail.com","created_at":"2016-10-21T10:42:38.000Z","modified_at":null,"deleted_at":null}]},"contextString":"[query output] [emailsenter.js:87] 2016-10-21T04:21:00.003Z ","argsString":"[\n {\n \"id\": 1,\n \"app_id\": 1,\n \"email\": \"surabill@gmail.com\",\n \"created_at\": \"2016-10-20T17:24:54.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 2,\n \"app_id\": 1,\n \"email\": \"deathbill99@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:21.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 3,\n \"app_id\": 1,\n \"email\": \"sittisak.kop@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:38.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n }\n]","message":"[query output] [emailsenter.js:87] 2016-10-21T04:21:00.003Z [\n {\n \"id\": 1,\n \"app_id\": 1,\n \"email\": \"surabill@gmail.com\",\n \"created_at\": \"2016-10-20T17:24:54.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 2,\n \"app_id\": 1,\n \"email\": \"deathbill99@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:21.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 3,\n \"app_id\": 1,\n \"email\": \"sittisak.kop@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:38.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n }\n]"} | ||
156 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477023660012,"location":{"filename":"emailsenter.js","line":138}},"args":{"0":{"resultCode":"50000","resultDescription":"mail error: Missing or Invalid Param"}},"contextString":"","argsString":"{\n \"resultCode\": \"50000\",\n \"resultDescription\": \"mail error: Missing or Invalid Param\"\n}","message":"{\n \"resultCode\": \"50000\",\n \"resultDescription\": \"mail error: Missing or Invalid Param\"\n}"} | ||
157 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477023720594,"location":{"filename":"server.js","line":15}},"args":{"0":"Web server listening at: %s","1":"http://localhost:3000"},"contextString":"","argsString":"Web server listening at: http://localhost:3000","message":"Web server listening at: http://localhost:3000"} | ||
158 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477023720598,"location":{"filename":"server.js","line":18}},"args":{"0":"Browse your REST API at %s%s","1":"http://localhost:3000","2":"/explorer"},"contextString":"","argsString":"Browse your REST API at http://localhost:3000/explorer","message":"Browse your REST API at http://localhost:3000/explorer"} | ||
159 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["input"],"file":true,"time":1477023722199,"location":{"filename":"emailsenter.js","line":70}},"args":{"0":{"app_id":"2","header":{"subject":"fuckyou"},"body":{"text":"son of a *****","html":"","attachments":""}}},"contextString":"[input] [emailsenter.js:70] 2016-10-21T04:22:02.199Z ","argsString":"{\n \"app_id\": \"2\",\n \"header\": {\n \"subject\": \"fuckyou\"\n },\n \"body\": {\n \"text\": \"son of a *****\",\n \"html\": \"\",\n \"attachments\": \"\"\n }\n}","message":"[input] [emailsenter.js:70] 2016-10-21T04:22:02.199Z {\n \"app_id\": \"2\",\n \"header\": {\n \"subject\": \"fuckyou\"\n },\n \"body\": {\n \"text\": \"son of a *****\",\n \"html\": \"\",\n \"attachments\": \"\"\n }\n}"} | ||
160 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["query output"],"file":true,"time":1477023722211,"location":{"filename":"emailsenter.js","line":87}},"args":{"0":[{"id":4,"app_id":2,"email":"sssba@gmail.com","created_at":"2016-10-21T10:43:16.000Z","modified_at":null,"deleted_at":null}]},"contextString":"[query output] [emailsenter.js:87] 2016-10-21T04:22:02.211Z ","argsString":"[\n {\n \"id\": 4,\n \"app_id\": 2,\n \"email\": \"sssba@gmail.com\",\n \"created_at\": \"2016-10-21T10:43:16.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n }\n]","message":"[query output] [emailsenter.js:87] 2016-10-21T04:22:02.211Z [\n {\n \"id\": 4,\n \"app_id\": 2,\n \"email\": \"sssba@gmail.com\",\n \"created_at\": \"2016-10-21T10:43:16.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n }\n]"} | ||
161 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477023722215,"location":{"filename":"emailsenter.js","line":121}},"args":{"0":{"to":"sssba@gmail.com,","subject":"fuckyou","text":"son of a *****","attachments":"","cc":"","bcc":""}},"contextString":"","argsString":"{\n \"to\": \"sssba@gmail.com,\",\n \"subject\": \"fuckyou\",\n \"text\": \"son of a *****\",\n \"attachments\": \"\",\n \"cc\": \"\",\n \"bcc\": \"\"\n}","message":"{\n \"to\": \"sssba@gmail.com,\",\n \"subject\": \"fuckyou\",\n \"text\": \"son of a *****\",\n \"attachments\": \"\",\n \"cc\": \"\",\n \"bcc\": \"\"\n}"} | ||
162 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477023722223,"location":{"filename":"emailsenter.js","line":139}},"args":{"0":{"resultCode":"50000","resultDescription":"mail error: Missing or Invalid Param"}},"contextString":"","argsString":"{\n \"resultCode\": \"50000\",\n \"resultDescription\": \"mail error: Missing or Invalid Param\"\n}","message":"{\n \"resultCode\": \"50000\",\n \"resultDescription\": \"mail error: Missing or Invalid Param\"\n}"} | ||
163 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477023997688,"location":{"filename":"server.js","line":15}},"args":{"0":"Web server listening at: %s","1":"http://localhost:3000"},"contextString":"","argsString":"Web server listening at: http://localhost:3000","message":"Web server listening at: http://localhost:3000"} | ||
164 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477023997691,"location":{"filename":"server.js","line":18}},"args":{"0":"Browse your REST API at %s%s","1":"http://localhost:3000","2":"/explorer"},"contextString":"","argsString":"Browse your REST API at http://localhost:3000/explorer","message":"Browse your REST API at http://localhost:3000/explorer"} | ||
165 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["input"],"file":true,"time":1477024006673,"location":{"filename":"emailsenter.js","line":70}},"args":{"0":{"app_id":"2","header":{"subject":"fuckyou"},"body":{"text":"son of a *****","html":"","attachments":""}}},"contextString":"[input] [emailsenter.js:70] 2016-10-21T04:26:46.673Z ","argsString":"{\n \"app_id\": \"2\",\n \"header\": {\n \"subject\": \"fuckyou\"\n },\n \"body\": {\n \"text\": \"son of a *****\",\n \"html\": \"\",\n \"attachments\": \"\"\n }\n}","message":"[input] [emailsenter.js:70] 2016-10-21T04:26:46.673Z {\n \"app_id\": \"2\",\n \"header\": {\n \"subject\": \"fuckyou\"\n },\n \"body\": {\n \"text\": \"son of a *****\",\n \"html\": \"\",\n \"attachments\": \"\"\n }\n}"} | ||
166 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["query output"],"file":true,"time":1477024006681,"location":{"filename":"emailsenter.js","line":87}},"args":{"0":[{"id":4,"app_id":2,"email":"sssba@gmail.com","created_at":"2016-10-21T10:43:16.000Z","modified_at":null,"deleted_at":null}]},"contextString":"[query output] [emailsenter.js:87] 2016-10-21T04:26:46.681Z ","argsString":"[\n {\n \"id\": 4,\n \"app_id\": 2,\n \"email\": \"sssba@gmail.com\",\n \"created_at\": \"2016-10-21T10:43:16.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n }\n]","message":"[query output] [emailsenter.js:87] 2016-10-21T04:26:46.681Z [\n {\n \"id\": 4,\n \"app_id\": 2,\n \"email\": \"sssba@gmail.com\",\n \"created_at\": \"2016-10-21T10:43:16.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n }\n]"} | ||
167 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477024006684,"location":{"filename":"emailsenter.js","line":121}},"args":{"0":{"to":"sssba@gmail.com,","subject":"fuckyou","text":"son of a *****","attachments":"","cc":"","bcc":""}},"contextString":"","argsString":"{\n \"to\": \"sssba@gmail.com,\",\n \"subject\": \"fuckyou\",\n \"text\": \"son of a *****\",\n \"attachments\": \"\",\n \"cc\": \"\",\n \"bcc\": \"\"\n}","message":"{\n \"to\": \"sssba@gmail.com,\",\n \"subject\": \"fuckyou\",\n \"text\": \"son of a *****\",\n \"attachments\": \"\",\n \"cc\": \"\",\n \"bcc\": \"\"\n}"} | ||
168 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477024086373,"location":{"filename":"server.js","line":15}},"args":{"0":"Web server listening at: %s","1":"http://localhost:3000"},"contextString":"","argsString":"Web server listening at: http://localhost:3000","message":"Web server listening at: http://localhost:3000"} | ||
169 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477024086378,"location":{"filename":"server.js","line":18}},"args":{"0":"Browse your REST API at %s%s","1":"http://localhost:3000","2":"/explorer"},"contextString":"","argsString":"Browse your REST API at http://localhost:3000/explorer","message":"Browse your REST API at http://localhost:3000/explorer"} | ||
170 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["input"],"file":true,"time":1477024088236,"location":{"filename":"emailsenter.js","line":70}},"args":{"0":{"app_id":"2","header":{"subject":"fuckyou"},"body":{"text":"son of a *****","html":"","attachments":""}}},"contextString":"[input] [emailsenter.js:70] 2016-10-21T04:28:08.236Z ","argsString":"{\n \"app_id\": \"2\",\n \"header\": {\n \"subject\": \"fuckyou\"\n },\n \"body\": {\n \"text\": \"son of a *****\",\n \"html\": \"\",\n \"attachments\": \"\"\n }\n}","message":"[input] [emailsenter.js:70] 2016-10-21T04:28:08.236Z {\n \"app_id\": \"2\",\n \"header\": {\n \"subject\": \"fuckyou\"\n },\n \"body\": {\n \"text\": \"son of a *****\",\n \"html\": \"\",\n \"attachments\": \"\"\n }\n}"} | ||
171 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["query output"],"file":true,"time":1477024088245,"location":{"filename":"emailsenter.js","line":87}},"args":{"0":[{"id":4,"app_id":2,"email":"sssba@gmail.com","created_at":"2016-10-21T10:43:16.000Z","modified_at":null,"deleted_at":null}]},"contextString":"[query output] [emailsenter.js:87] 2016-10-21T04:28:08.245Z ","argsString":"[\n {\n \"id\": 4,\n \"app_id\": 2,\n \"email\": \"sssba@gmail.com\",\n \"created_at\": \"2016-10-21T10:43:16.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n }\n]","message":"[query output] [emailsenter.js:87] 2016-10-21T04:28:08.245Z [\n {\n \"id\": 4,\n \"app_id\": 2,\n \"email\": \"sssba@gmail.com\",\n \"created_at\": \"2016-10-21T10:43:16.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n }\n]"} | ||
172 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["output"],"file":true,"time":1477024091392,"location":{"filename":"emailsenter.js","line":138}},"args":{"0":{"resultCode":"20000","resultDescription":"Success"}},"contextString":"[output] [emailsenter.js:138] 2016-10-21T04:28:11.392Z ","argsString":"{\n \"resultCode\": \"20000\",\n \"resultDescription\": \"Success\"\n}","message":"[output] [emailsenter.js:138] 2016-10-21T04:28:11.392Z {\n \"resultCode\": \"20000\",\n \"resultDescription\": \"Success\"\n}"} | ||
173 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["input"],"file":true,"time":1477024127834,"location":{"filename":"emailsenter.js","line":15}},"args":{"0":{"header":{"to":"deathbill99@gmail.com","subject":"fuckyou"},"body":{"text":"son of a *****","html":"","attachments":""}}},"contextString":"[input] [emailsenter.js:15] 2016-10-21T04:28:47.834Z ","argsString":"{\n \"header\": {\n \"to\": \"deathbill99@gmail.com\",\n \"subject\": \"fuckyou\"\n },\n \"body\": {\n \"text\": \"son of a *****\",\n \"html\": \"\",\n \"attachments\": \"\"\n }\n}","message":"[input] [emailsenter.js:15] 2016-10-21T04:28:47.834Z {\n \"header\": {\n \"to\": \"deathbill99@gmail.com\",\n \"subject\": \"fuckyou\"\n },\n \"body\": {\n \"text\": \"son of a *****\",\n \"html\": \"\",\n \"attachments\": \"\"\n }\n}"} | ||
174 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477024365545,"location":{"filename":"server.js","line":15}},"args":{"0":"Web server listening at: %s","1":"http://localhost:3000"},"contextString":"","argsString":"Web server listening at: http://localhost:3000","message":"Web server listening at: http://localhost:3000"} | ||
175 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477024365558,"location":{"filename":"server.js","line":18}},"args":{"0":"Browse your REST API at %s%s","1":"http://localhost:3000","2":"/explorer"},"contextString":"","argsString":"Browse your REST API at http://localhost:3000/explorer","message":"Browse your REST API at http://localhost:3000/explorer"} | ||
176 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["input"],"file":true,"time":1477024367355,"location":{"filename":"emailsenter.js","line":77}},"args":{"0":{"app_id":"3","header":{"subject":"fuckyou"},"body":{"text":"son of a *****","html":"","attachments":""}}},"contextString":"[input] [emailsenter.js:77] 2016-10-21T04:32:47.355Z ","argsString":"{\n \"app_id\": \"3\",\n \"header\": {\n \"subject\": \"fuckyou\"\n },\n \"body\": {\n \"text\": \"son of a *****\",\n \"html\": \"\",\n \"attachments\": \"\"\n }\n}","message":"[input] [emailsenter.js:77] 2016-10-21T04:32:47.355Z {\n \"app_id\": \"3\",\n \"header\": {\n \"subject\": \"fuckyou\"\n },\n \"body\": {\n \"text\": \"son of a *****\",\n \"html\": \"\",\n \"attachments\": \"\"\n }\n}"} | ||
177 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["output"],"file":true,"time":1477024367362,"location":{"filename":"emailsenter.js","line":159}},"args":{"0":{"resultCode":"40400","resultDescription":"data not found"}},"contextString":"[output] [emailsenter.js:159] 2016-10-21T04:32:47.362Z ","argsString":"{\n \"resultCode\": \"40400\",\n \"resultDescription\": \"data not found\"\n}","message":"[output] [emailsenter.js:159] 2016-10-21T04:32:47.362Z {\n \"resultCode\": \"40400\",\n \"resultDescription\": \"data not found\"\n}"} | ||
178 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477024782487,"location":{"filename":"server.js","line":18}},"args":{"0":"Browse your REST API at %s%s","1":"http://localhost:3000","2":"/explorer"},"contextString":"","argsString":"Browse your REST API at http://localhost:3000/explorer","message":"Browse your REST API at http://localhost:3000/explorer"} | ||
179 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477024782481,"location":{"filename":"server.js","line":15}},"args":{"0":"Web server listening at: %s","1":"http://localhost:3000"},"contextString":"","argsString":"Web server listening at: http://localhost:3000","message":"Web server listening at: http://localhost:3000"} | ||
180 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["input"],"file":true,"time":1477024786060,"location":{"filename":"emailsenter.js","line":78}},"args":{"0":{"app_id":"3","header":{"subject":"fuckyou"},"body":{"text":"son of a *****","html":"","attachments":""}}},"contextString":"[input] [emailsenter.js:78] 2016-10-21T04:39:46.060Z ","argsString":"{\n \"app_id\": \"3\",\n \"header\": {\n \"subject\": \"fuckyou\"\n },\n \"body\": {\n \"text\": \"son of a *****\",\n \"html\": \"\",\n \"attachments\": \"\"\n }\n}","message":"[input] [emailsenter.js:78] 2016-10-21T04:39:46.060Z {\n \"app_id\": \"3\",\n \"header\": {\n \"subject\": \"fuckyou\"\n },\n \"body\": {\n \"text\": \"son of a *****\",\n \"html\": \"\",\n \"attachments\": \"\"\n }\n}"} | ||
181 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["output"],"file":true,"time":1477024786067,"location":{"filename":"emailsenter.js","line":159}},"args":{"0":{"resultCode":"40400","resultDescription":"data not found"}},"contextString":"[output] [emailsenter.js:159] 2016-10-21T04:39:46.067Z ","argsString":"{\n \"resultCode\": \"40400\",\n \"resultDescription\": \"data not found\"\n}","message":"[output] [emailsenter.js:159] 2016-10-21T04:39:46.067Z {\n \"resultCode\": \"40400\",\n \"resultDescription\": \"data not found\"\n}"} | ||
182 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477024989751,"location":{"filename":"server.js","line":15}},"args":{"0":"Web server listening at: %s","1":"http://localhost:3000"},"contextString":"","argsString":"Web server listening at: http://localhost:3000","message":"Web server listening at: http://localhost:3000"} | ||
183 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477024989754,"location":{"filename":"server.js","line":18}},"args":{"0":"Browse your REST API at %s%s","1":"http://localhost:3000","2":"/explorer"},"contextString":"","argsString":"Browse your REST API at http://localhost:3000/explorer","message":"Browse your REST API at http://localhost:3000/explorer"} | ||
184 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["input"],"file":true,"time":1477024992862,"location":{"filename":"emailsenter.js","line":78}},"args":{"0":{"app_id":"3","header":{"subject":"fuckyou"},"body":{"text":"son of a *****","html":"","attachments":""}}},"contextString":"[input] [emailsenter.js:78] 2016-10-21T04:43:12.862Z ","argsString":"{\n \"app_id\": \"3\",\n \"header\": {\n \"subject\": \"fuckyou\"\n },\n \"body\": {\n \"text\": \"son of a *****\",\n \"html\": \"\",\n \"attachments\": \"\"\n }\n}","message":"[input] [emailsenter.js:78] 2016-10-21T04:43:12.862Z {\n \"app_id\": \"3\",\n \"header\": {\n \"subject\": \"fuckyou\"\n },\n \"body\": {\n \"text\": \"son of a *****\",\n \"html\": \"\",\n \"attachments\": \"\"\n }\n}"} | ||
185 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["output"],"file":true,"time":1477024992871,"location":{"filename":"emailsenter.js","line":159}},"args":{"0":{"resultCode":"40400","resultDescription":"data not found"}},"contextString":"[output] [emailsenter.js:159] 2016-10-21T04:43:12.871Z ","argsString":"{\n \"resultCode\": \"40400\",\n \"resultDescription\": \"data not found\"\n}","message":"[output] [emailsenter.js:159] 2016-10-21T04:43:12.871Z {\n \"resultCode\": \"40400\",\n \"resultDescription\": \"data not found\"\n}"} | ||
186 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477025107057,"location":{"filename":"server.js","line":15}},"args":{"0":"Web server listening at: %s","1":"http://localhost:3000"},"contextString":"","argsString":"Web server listening at: http://localhost:3000","message":"Web server listening at: http://localhost:3000"} | ||
187 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477025107060,"location":{"filename":"server.js","line":18}},"args":{"0":"Browse your REST API at %s%s","1":"http://localhost:3000","2":"/explorer"},"contextString":"","argsString":"Browse your REST API at http://localhost:3000/explorer","message":"Browse your REST API at http://localhost:3000/explorer"} | ||
188 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["input"],"file":true,"time":1477025109150,"location":{"filename":"emailsenter.js","line":78}},"args":{"0":{"app_id":"3","header":{"subject":"fuckyou"},"body":{"text":"son of a *****","html":"","attachments":""}}},"contextString":"[input] [emailsenter.js:78] 2016-10-21T04:45:09.150Z ","argsString":"{\n \"app_id\": \"3\",\n \"header\": {\n \"subject\": \"fuckyou\"\n },\n \"body\": {\n \"text\": \"son of a *****\",\n \"html\": \"\",\n \"attachments\": \"\"\n }\n}","message":"[input] [emailsenter.js:78] 2016-10-21T04:45:09.150Z {\n \"app_id\": \"3\",\n \"header\": {\n \"subject\": \"fuckyou\"\n },\n \"body\": {\n \"text\": \"son of a *****\",\n \"html\": \"\",\n \"attachments\": \"\"\n }\n}"} | ||
189 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["output"],"file":true,"time":1477025109158,"location":{"filename":"emailsenter.js","line":159}},"args":{"0":{"resultCode":"40400","resultDescription":"data not found"}},"contextString":"[output] [emailsenter.js:159] 2016-10-21T04:45:09.158Z ","argsString":"{\n \"resultCode\": \"40400\",\n \"resultDescription\": \"data not found\"\n}","message":"[output] [emailsenter.js:159] 2016-10-21T04:45:09.158Z {\n \"resultCode\": \"40400\",\n \"resultDescription\": \"data not found\"\n}"} | ||
190 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477025316585,"location":{"filename":"server.js","line":15}},"args":{"0":"Web server listening at: %s","1":"http://localhost:3000"},"contextString":"","argsString":"Web server listening at: http://localhost:3000","message":"Web server listening at: http://localhost:3000"} | ||
191 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477025316588,"location":{"filename":"server.js","line":18}},"args":{"0":"Browse your REST API at %s%s","1":"http://localhost:3000","2":"/explorer"},"contextString":"","argsString":"Browse your REST API at http://localhost:3000/explorer","message":"Browse your REST API at http://localhost:3000/explorer"} | ||
192 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477026325944,"location":{"filename":"server.js","line":15}},"args":{"0":"Web server listening at: %s","1":"http://localhost:3000"},"contextString":"","argsString":"Web server listening at: http://localhost:3000","message":"Web server listening at: http://localhost:3000"} | ||
193 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477026325948,"location":{"filename":"server.js","line":18}},"args":{"0":"Browse your REST API at %s%s","1":"http://localhost:3000","2":"/explorer"},"contextString":"","argsString":"Browse your REST API at http://localhost:3000/explorer","message":"Browse your REST API at http://localhost:3000/explorer"} | ||
194 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477026365609,"location":{"filename":"server.js","line":15}},"args":{"0":"Web server listening at: %s","1":"http://localhost:3000"},"contextString":"","argsString":"Web server listening at: http://localhost:3000","message":"Web server listening at: http://localhost:3000"} | ||
195 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477026365612,"location":{"filename":"server.js","line":18}},"args":{"0":"Browse your REST API at %s%s","1":"http://localhost:3000","2":"/explorer"},"contextString":"","argsString":"Browse your REST API at http://localhost:3000/explorer","message":"Browse your REST API at http://localhost:3000/explorer"} | ||
196 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477026436821,"location":{"filename":"server.js","line":15}},"args":{"0":"Web server listening at: %s","1":"http://localhost:3000"},"contextString":"","argsString":"Web server listening at: http://localhost:3000","message":"Web server listening at: http://localhost:3000"} | ||
197 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477026436825,"location":{"filename":"server.js","line":18}},"args":{"0":"Browse your REST API at %s%s","1":"http://localhost:3000","2":"/explorer"},"contextString":"","argsString":"Browse your REST API at http://localhost:3000/explorer","message":"Browse your REST API at http://localhost:3000/explorer"} | ||
198 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477026494813,"location":{"filename":"server.js","line":18}},"args":{"0":"Browse your REST API at %s%s","1":"http://localhost:3000","2":"/explorer"},"contextString":"","argsString":"Browse your REST API at http://localhost:3000/explorer","message":"Browse your REST API at http://localhost:3000/explorer"} | ||
199 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477026494810,"location":{"filename":"server.js","line":15}},"args":{"0":"Web server listening at: %s","1":"http://localhost:3000"},"contextString":"","argsString":"Web server listening at: http://localhost:3000","message":"Web server listening at: http://localhost:3000"} | ||
200 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477026553458,"location":{"filename":"server.js","line":15}},"args":{"0":"Web server listening at: %s","1":"http://localhost:3000"},"contextString":"","argsString":"Web server listening at: http://localhost:3000","message":"Web server listening at: http://localhost:3000"} | ||
201 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477026553462,"location":{"filename":"server.js","line":18}},"args":{"0":"Browse your REST API at %s%s","1":"http://localhost:3000","2":"/explorer"},"contextString":"","argsString":"Browse your REST API at http://localhost:3000/explorer","message":"Browse your REST API at http://localhost:3000/explorer"} | ||
202 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["output"],"file":true,"time":1477026555065,"location":{"filename":"emails.js","line":28}},"args":{"0":{"resultCode":"20000","resultDescription":"Success","data":{"user_id":[{"id":1,"app_id":1,"email":"surabill@gmail.com","created_at":"2016-10-20T17:24:54.000Z","modified_at":null,"deleted_at":null},{"id":2,"app_id":1,"email":"deathbill99@gmail.com","created_at":"2016-10-21T10:42:21.000Z","modified_at":null,"deleted_at":null},{"id":3,"app_id":1,"email":"sittisak.kop@gmail.com","created_at":"2016-10-21T10:42:38.000Z","modified_at":null,"deleted_at":null}]}}},"contextString":"[output] [emails.js:28] 2016-10-21T05:09:15.065Z ","argsString":"{\n \"resultCode\": \"20000\",\n \"resultDescription\": \"Success\",\n \"data\": {\n \"user_id\": [\n {\n \"id\": 1,\n \"app_id\": 1,\n \"email\": \"surabill@gmail.com\",\n \"created_at\": \"2016-10-20T17:24:54.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 2,\n \"app_id\": 1,\n \"email\": \"deathbill99@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:21.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 3,\n \"app_id\": 1,\n \"email\": \"sittisak.kop@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:38.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n }\n ]\n }\n}","message":"[output] [emails.js:28] 2016-10-21T05:09:15.065Z {\n \"resultCode\": \"20000\",\n \"resultDescription\": \"Success\",\n \"data\": {\n \"user_id\": [\n {\n \"id\": 1,\n \"app_id\": 1,\n \"email\": \"surabill@gmail.com\",\n \"created_at\": \"2016-10-20T17:24:54.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 2,\n \"app_id\": 1,\n \"email\": \"deathbill99@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:21.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 3,\n \"app_id\": 1,\n \"email\": \"sittisak.kop@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:38.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n }\n ]\n }\n}"} | ||
203 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["query output"],"file":true,"time":1477026555062,"location":{"filename":"emails.js","line":20}},"args":{"0":[{"id":1,"app_id":1,"email":"surabill@gmail.com","created_at":"2016-10-20T17:24:54.000Z","modified_at":null,"deleted_at":null},{"id":2,"app_id":1,"email":"deathbill99@gmail.com","created_at":"2016-10-21T10:42:21.000Z","modified_at":null,"deleted_at":null},{"id":3,"app_id":1,"email":"sittisak.kop@gmail.com","created_at":"2016-10-21T10:42:38.000Z","modified_at":null,"deleted_at":null}]},"contextString":"[query output] [emails.js:20] 2016-10-21T05:09:15.062Z ","argsString":"[\n {\n \"id\": 1,\n \"app_id\": 1,\n \"email\": \"surabill@gmail.com\",\n \"created_at\": \"2016-10-20T17:24:54.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 2,\n \"app_id\": 1,\n \"email\": \"deathbill99@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:21.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 3,\n \"app_id\": 1,\n \"email\": \"sittisak.kop@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:38.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n }\n]","message":"[query output] [emails.js:20] 2016-10-21T05:09:15.062Z [\n {\n \"id\": 1,\n \"app_id\": 1,\n \"email\": \"surabill@gmail.com\",\n \"created_at\": \"2016-10-20T17:24:54.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 2,\n \"app_id\": 1,\n \"email\": \"deathbill99@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:21.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 3,\n \"app_id\": 1,\n \"email\": \"sittisak.kop@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:38.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n }\n]"} | ||
204 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477045476747,"location":{"filename":"server.js","line":15}},"args":{"0":"Web server listening at: %s","1":"http://localhost:3000"},"contextString":"","argsString":"Web server listening at: http://localhost:3000","message":"Web server listening at: http://localhost:3000"} | ||
205 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477045476747,"location":{"filename":"server.js","line":18}},"args":{"0":"Browse your REST API at %s%s","1":"http://localhost:3000","2":"/explorer"},"contextString":"","argsString":"Browse your REST API at http://localhost:3000/explorer","message":"Browse your REST API at http://localhost:3000/explorer"} | ||
206 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477045550748,"location":{"filename":"server.js","line":15}},"args":{"0":"Web server listening at: %s","1":"http://localhost:3000"},"contextString":"","argsString":"Web server listening at: http://localhost:3000","message":"Web server listening at: http://localhost:3000"} | ||
207 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477045550748,"location":{"filename":"server.js","line":18}},"args":{"0":"Browse your REST API at %s%s","1":"http://localhost:3000","2":"/explorer"},"contextString":"","argsString":"Browse your REST API at http://localhost:3000/explorer","message":"Browse your REST API at http://localhost:3000/explorer"} | ||
208 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["input"],"file":true,"time":1477045575037,"location":{"filename":"emailsenter.js","line":78}},"args":{"0":{"app_id":"3","header":{"subject":"fuckyou"},"body":{"text":"son of a *****","html":"","attachments":""}}},"contextString":"[input] [emailsenter.js:78] 2016-10-21T10:26:15.037Z ","argsString":"{\n \"app_id\": \"3\",\n \"header\": {\n \"subject\": \"fuckyou\"\n },\n \"body\": {\n \"text\": \"son of a *****\",\n \"html\": \"\",\n \"attachments\": \"\"\n }\n}","message":"[input] [emailsenter.js:78] 2016-10-21T10:26:15.037Z {\n \"app_id\": \"3\",\n \"header\": {\n \"subject\": \"fuckyou\"\n },\n \"body\": {\n \"text\": \"son of a *****\",\n \"html\": \"\",\n \"attachments\": \"\"\n }\n}"} | ||
209 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["output"],"file":true,"time":1477045575062,"location":{"filename":"emailsenter.js","line":159}},"args":{"0":{"resultCode":"40400","resultDescription":"data not found"}},"contextString":"[output] [emailsenter.js:159] 2016-10-21T10:26:15.062Z ","argsString":"{\n \"resultCode\": \"40400\",\n \"resultDescription\": \"data not found\"\n}","message":"[output] [emailsenter.js:159] 2016-10-21T10:26:15.062Z {\n \"resultCode\": \"40400\",\n \"resultDescription\": \"data not found\"\n}"} | ||
210 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477045615920,"location":{"filename":"server.js","line":15}},"args":{"0":"Web server listening at: %s","1":"http://localhost:3000"},"contextString":"","argsString":"Web server listening at: http://localhost:3000","message":"Web server listening at: http://localhost:3000"} | ||
211 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477045615924,"location":{"filename":"server.js","line":18}},"args":{"0":"Browse your REST API at %s%s","1":"http://localhost:3000","2":"/explorer"},"contextString":"","argsString":"Browse your REST API at http://localhost:3000/explorer","message":"Browse your REST API at http://localhost:3000/explorer"} | ||
212 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["input"],"file":true,"time":1477045623878,"location":{"filename":"emailsenter.js","line":78}},"args":{"0":{"app_id":"3","header":{"subject":"fuckyou"},"body":{"text":"son of a *****","html":"","attachments":""}}},"contextString":"[input] [emailsenter.js:78] 2016-10-21T10:27:03.878Z ","argsString":"{\n \"app_id\": \"3\",\n \"header\": {\n \"subject\": \"fuckyou\"\n },\n \"body\": {\n \"text\": \"son of a *****\",\n \"html\": \"\",\n \"attachments\": \"\"\n }\n}","message":"[input] [emailsenter.js:78] 2016-10-21T10:27:03.878Z {\n \"app_id\": \"3\",\n \"header\": {\n \"subject\": \"fuckyou\"\n },\n \"body\": {\n \"text\": \"son of a *****\",\n \"html\": \"\",\n \"attachments\": \"\"\n }\n}"} | ||
213 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["output"],"file":true,"time":1477045623887,"location":{"filename":"emailsenter.js","line":159}},"args":{"0":{"resultCode":"40400","resultDescription":"data not found"}},"contextString":"[output] [emailsenter.js:159] 2016-10-21T10:27:03.887Z ","argsString":"{\n \"resultCode\": \"40400\",\n \"resultDescription\": \"data not found\"\n}","message":"[output] [emailsenter.js:159] 2016-10-21T10:27:03.887Z {\n \"resultCode\": \"40400\",\n \"resultDescription\": \"data not found\"\n}"} | ||
214 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["input"],"file":true,"time":1477045734418,"location":{"filename":"emailsenter.js","line":78}},"args":{"0":{"app_id":"3","header":{"subject":"fuckyou"},"body":{"text":"son of a *****","html":"","attachments":""}}},"contextString":"[input] [emailsenter.js:78] 2016-10-21T10:28:54.418Z ","argsString":"{\n \"app_id\": \"3\",\n \"header\": {\n \"subject\": \"fuckyou\"\n },\n \"body\": {\n \"text\": \"son of a *****\",\n \"html\": \"\",\n \"attachments\": \"\"\n }\n}","message":"[input] [emailsenter.js:78] 2016-10-21T10:28:54.418Z {\n \"app_id\": \"3\",\n \"header\": {\n \"subject\": \"fuckyou\"\n },\n \"body\": {\n \"text\": \"son of a *****\",\n \"html\": \"\",\n \"attachments\": \"\"\n }\n}"} | ||
215 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["output"],"file":true,"time":1477045734421,"location":{"filename":"emailsenter.js","line":159}},"args":{"0":{"resultCode":"40400","resultDescription":"data not found"}},"contextString":"[output] [emailsenter.js:159] 2016-10-21T10:28:54.421Z ","argsString":"{\n \"resultCode\": \"40400\",\n \"resultDescription\": \"data not found\"\n}","message":"[output] [emailsenter.js:159] 2016-10-21T10:28:54.421Z {\n \"resultCode\": \"40400\",\n \"resultDescription\": \"data not found\"\n}"} | ||
216 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["query output"],"file":true,"time":1477045756384,"location":{"filename":"emails.js","line":20}},"args":{"0":[{"id":1,"app_id":1,"email":"surabill@gmail.com","created_at":"2016-10-20T17:24:54.000Z","modified_at":null,"deleted_at":null},{"id":2,"app_id":1,"email":"deathbill99@gmail.com","created_at":"2016-10-21T10:42:21.000Z","modified_at":null,"deleted_at":null},{"id":3,"app_id":1,"email":"sittisak.kop@gmail.com","created_at":"2016-10-21T10:42:38.000Z","modified_at":null,"deleted_at":null}]},"contextString":"[query output] [emails.js:20] 2016-10-21T10:29:16.384Z ","argsString":"[\n {\n \"id\": 1,\n \"app_id\": 1,\n \"email\": \"surabill@gmail.com\",\n \"created_at\": \"2016-10-20T17:24:54.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 2,\n \"app_id\": 1,\n \"email\": \"deathbill99@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:21.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 3,\n \"app_id\": 1,\n \"email\": \"sittisak.kop@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:38.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n }\n]","message":"[query output] [emails.js:20] 2016-10-21T10:29:16.384Z [\n {\n \"id\": 1,\n \"app_id\": 1,\n \"email\": \"surabill@gmail.com\",\n \"created_at\": \"2016-10-20T17:24:54.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 2,\n \"app_id\": 1,\n \"email\": \"deathbill99@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:21.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 3,\n \"app_id\": 1,\n \"email\": \"sittisak.kop@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:38.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n }\n]"} | ||
217 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["output"],"file":true,"time":1477045756385,"location":{"filename":"emails.js","line":28}},"args":{"0":{"resultCode":"20000","resultDescription":"Success","data":{"user_id":[{"id":1,"app_id":1,"email":"surabill@gmail.com","created_at":"2016-10-20T17:24:54.000Z","modified_at":null,"deleted_at":null},{"id":2,"app_id":1,"email":"deathbill99@gmail.com","created_at":"2016-10-21T10:42:21.000Z","modified_at":null,"deleted_at":null},{"id":3,"app_id":1,"email":"sittisak.kop@gmail.com","created_at":"2016-10-21T10:42:38.000Z","modified_at":null,"deleted_at":null}]}}},"contextString":"[output] [emails.js:28] 2016-10-21T10:29:16.385Z ","argsString":"{\n \"resultCode\": \"20000\",\n \"resultDescription\": \"Success\",\n \"data\": {\n \"user_id\": [\n {\n \"id\": 1,\n \"app_id\": 1,\n \"email\": \"surabill@gmail.com\",\n \"created_at\": \"2016-10-20T17:24:54.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 2,\n \"app_id\": 1,\n \"email\": \"deathbill99@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:21.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 3,\n \"app_id\": 1,\n \"email\": \"sittisak.kop@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:38.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n }\n ]\n }\n}","message":"[output] [emails.js:28] 2016-10-21T10:29:16.385Z {\n \"resultCode\": \"20000\",\n \"resultDescription\": \"Success\",\n \"data\": {\n \"user_id\": [\n {\n \"id\": 1,\n \"app_id\": 1,\n \"email\": \"surabill@gmail.com\",\n \"created_at\": \"2016-10-20T17:24:54.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 2,\n \"app_id\": 1,\n \"email\": \"deathbill99@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:21.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 3,\n \"app_id\": 1,\n \"email\": \"sittisak.kop@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:38.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n }\n ]\n }\n}"} | ||
218 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477046021558,"location":{"filename":"server.js","line":15}},"args":{"0":"Web server listening at: %s","1":"http://localhost:3000"},"contextString":"","argsString":"Web server listening at: http://localhost:3000","message":"Web server listening at: http://localhost:3000"} | ||
219 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477046021558,"location":{"filename":"server.js","line":18}},"args":{"0":"Browse your REST API at %s%s","1":"http://localhost:3000","2":"/explorer"},"contextString":"","argsString":"Browse your REST API at http://localhost:3000/explorer","message":"Browse your REST API at http://localhost:3000/explorer"} | ||
220 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["input"],"file":true,"time":1477046028764,"location":{"filename":"emailsenter.js","line":78}},"args":{"0":{"app_id":"3","header":{"subject":"fuckyou"},"body":{"text":"son of a *****","html":"","attachments":""}}},"contextString":"[input] [emailsenter.js:78] 2016-10-21T10:33:48.764Z ","argsString":"{\n \"app_id\": \"3\",\n \"header\": {\n \"subject\": \"fuckyou\"\n },\n \"body\": {\n \"text\": \"son of a *****\",\n \"html\": \"\",\n \"attachments\": \"\"\n }\n}","message":"[input] [emailsenter.js:78] 2016-10-21T10:33:48.764Z {\n \"app_id\": \"3\",\n \"header\": {\n \"subject\": \"fuckyou\"\n },\n \"body\": {\n \"text\": \"son of a *****\",\n \"html\": \"\",\n \"attachments\": \"\"\n }\n}"} | ||
221 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["output"],"file":true,"time":1477046028764,"location":{"filename":"emailsenter.js","line":159}},"args":{"0":{"resultCode":"40400","resultDescription":"data not found"}},"contextString":"[output] [emailsenter.js:159] 2016-10-21T10:33:48.764Z ","argsString":"{\n \"resultCode\": \"40400\",\n \"resultDescription\": \"data not found\"\n}","message":"[output] [emailsenter.js:159] 2016-10-21T10:33:48.764Z {\n \"resultCode\": \"40400\",\n \"resultDescription\": \"data not found\"\n}"} | ||
222 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["output"],"file":true,"time":1477046095430,"location":{"filename":"emails.js","line":28}},"args":{"0":{"resultCode":"20000","resultDescription":"Success","data":{"user_id":[{"id":1,"app_id":1,"email":"surabill@gmail.com","created_at":"2016-10-20T17:24:54.000Z","modified_at":null,"deleted_at":null},{"id":2,"app_id":1,"email":"deathbill99@gmail.com","created_at":"2016-10-21T10:42:21.000Z","modified_at":null,"deleted_at":null},{"id":3,"app_id":1,"email":"sittisak.kop@gmail.com","created_at":"2016-10-21T10:42:38.000Z","modified_at":null,"deleted_at":null}]}}},"contextString":"[output] [emails.js:28] 2016-10-21T10:34:55.430Z ","argsString":"{\n \"resultCode\": \"20000\",\n \"resultDescription\": \"Success\",\n \"data\": {\n \"user_id\": [\n {\n \"id\": 1,\n \"app_id\": 1,\n \"email\": \"surabill@gmail.com\",\n \"created_at\": \"2016-10-20T17:24:54.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 2,\n \"app_id\": 1,\n \"email\": \"deathbill99@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:21.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 3,\n \"app_id\": 1,\n \"email\": \"sittisak.kop@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:38.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n }\n ]\n }\n}","message":"[output] [emails.js:28] 2016-10-21T10:34:55.430Z {\n \"resultCode\": \"20000\",\n \"resultDescription\": \"Success\",\n \"data\": {\n \"user_id\": [\n {\n \"id\": 1,\n \"app_id\": 1,\n \"email\": \"surabill@gmail.com\",\n \"created_at\": \"2016-10-20T17:24:54.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 2,\n \"app_id\": 1,\n \"email\": \"deathbill99@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:21.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 3,\n \"app_id\": 1,\n \"email\": \"sittisak.kop@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:38.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n }\n ]\n }\n}"} | ||
223 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["query output"],"file":true,"time":1477046095428,"location":{"filename":"emails.js","line":20}},"args":{"0":[{"id":1,"app_id":1,"email":"surabill@gmail.com","created_at":"2016-10-20T17:24:54.000Z","modified_at":null,"deleted_at":null},{"id":2,"app_id":1,"email":"deathbill99@gmail.com","created_at":"2016-10-21T10:42:21.000Z","modified_at":null,"deleted_at":null},{"id":3,"app_id":1,"email":"sittisak.kop@gmail.com","created_at":"2016-10-21T10:42:38.000Z","modified_at":null,"deleted_at":null}]},"contextString":"[query output] [emails.js:20] 2016-10-21T10:34:55.428Z ","argsString":"[\n {\n \"id\": 1,\n \"app_id\": 1,\n \"email\": \"surabill@gmail.com\",\n \"created_at\": \"2016-10-20T17:24:54.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 2,\n \"app_id\": 1,\n \"email\": \"deathbill99@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:21.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 3,\n \"app_id\": 1,\n \"email\": \"sittisak.kop@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:38.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n }\n]","message":"[query output] [emails.js:20] 2016-10-21T10:34:55.428Z [\n {\n \"id\": 1,\n \"app_id\": 1,\n \"email\": \"surabill@gmail.com\",\n \"created_at\": \"2016-10-20T17:24:54.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 2,\n \"app_id\": 1,\n \"email\": \"deathbill99@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:21.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 3,\n \"app_id\": 1,\n \"email\": \"sittisak.kop@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:38.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n }\n]"} | ||
224 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["input"],"file":true,"time":1477046123736,"location":{"filename":"emailsenter.js","line":78}},"args":{"0":{"app_id":"3","header":{"subject":"fuckyou"},"body":{"text":"son of a *****","html":"","attachments":""}}},"contextString":"[input] [emailsenter.js:78] 2016-10-21T10:35:23.736Z ","argsString":"{\n \"app_id\": \"3\",\n \"header\": {\n \"subject\": \"fuckyou\"\n },\n \"body\": {\n \"text\": \"son of a *****\",\n \"html\": \"\",\n \"attachments\": \"\"\n }\n}","message":"[input] [emailsenter.js:78] 2016-10-21T10:35:23.736Z {\n \"app_id\": \"3\",\n \"header\": {\n \"subject\": \"fuckyou\"\n },\n \"body\": {\n \"text\": \"son of a *****\",\n \"html\": \"\",\n \"attachments\": \"\"\n }\n}"} | ||
225 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["output"],"file":true,"time":1477046123773,"location":{"filename":"emailsenter.js","line":159}},"args":{"0":{"resultCode":"40400","resultDescription":"data not found"}},"contextString":"[output] [emailsenter.js:159] 2016-10-21T10:35:23.773Z ","argsString":"{\n \"resultCode\": \"40400\",\n \"resultDescription\": \"data not found\"\n}","message":"[output] [emailsenter.js:159] 2016-10-21T10:35:23.773Z {\n \"resultCode\": \"40400\",\n \"resultDescription\": \"data not found\"\n}"} | ||
226 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477046168382,"location":{"filename":"server.js","line":15}},"args":{"0":"Web server listening at: %s","1":"http://localhost:3000"},"contextString":"","argsString":"Web server listening at: http://localhost:3000","message":"Web server listening at: http://localhost:3000"} | ||
227 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477046168382,"location":{"filename":"server.js","line":18}},"args":{"0":"Browse your REST API at %s%s","1":"http://localhost:3000","2":"/explorer"},"contextString":"","argsString":"Browse your REST API at http://localhost:3000/explorer","message":"Browse your REST API at http://localhost:3000/explorer"} | ||
228 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["input"],"file":true,"time":1477046169826,"location":{"filename":"emailsenter.js","line":78}},"args":{"0":{"app_id":"3","header":{"subject":"fuckyou"},"body":{"text":"son of a *****","html":"","attachments":""}}},"contextString":"[input] [emailsenter.js:78] 2016-10-21T10:36:09.826Z ","argsString":"{\n \"app_id\": \"3\",\n \"header\": {\n \"subject\": \"fuckyou\"\n },\n \"body\": {\n \"text\": \"son of a *****\",\n \"html\": \"\",\n \"attachments\": \"\"\n }\n}","message":"[input] [emailsenter.js:78] 2016-10-21T10:36:09.826Z {\n \"app_id\": \"3\",\n \"header\": {\n \"subject\": \"fuckyou\"\n },\n \"body\": {\n \"text\": \"son of a *****\",\n \"html\": \"\",\n \"attachments\": \"\"\n }\n}"} | ||
229 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["output"],"file":true,"time":1477046169834,"location":{"filename":"emailsenter.js","line":159}},"args":{"0":{"resultCode":"40400","resultDescription":"data not found"}},"contextString":"[output] [emailsenter.js:159] 2016-10-21T10:36:09.834Z ","argsString":"{\n \"resultCode\": \"40400\",\n \"resultDescription\": \"data not found\"\n}","message":"[output] [emailsenter.js:159] 2016-10-21T10:36:09.834Z {\n \"resultCode\": \"40400\",\n \"resultDescription\": \"data not found\"\n}"} | ||
230 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477046235468,"location":{"filename":"server.js","line":18}},"args":{"0":"Browse your REST API at %s%s","1":"http://localhost:3000","2":"/explorer"},"contextString":"","argsString":"Browse your REST API at http://localhost:3000/explorer","message":"Browse your REST API at http://localhost:3000/explorer"} | ||
231 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477046235464,"location":{"filename":"server.js","line":15}},"args":{"0":"Web server listening at: %s","1":"http://localhost:3000"},"contextString":"","argsString":"Web server listening at: http://localhost:3000","message":"Web server listening at: http://localhost:3000"} | ||
232 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477046498159,"location":{"filename":"server.js","line":15}},"args":{"0":"Web server listening at: %s","1":"http://localhost:3000"},"contextString":"","argsString":"Web server listening at: http://localhost:3000","message":"Web server listening at: http://localhost:3000"} | ||
233 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477046498159,"location":{"filename":"server.js","line":18}},"args":{"0":"Browse your REST API at %s%s","1":"http://localhost:3000","2":"/explorer"},"contextString":"","argsString":"Browse your REST API at http://localhost:3000/explorer","message":"Browse your REST API at http://localhost:3000/explorer"} | ||
234 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["input"],"file":true,"time":1477046500658,"location":{"filename":"emailsenter.js","line":74}},"args":{"0":{"app_id":"3","header":{"subject":"fuckyou"},"body":{"text":"son of a *****","html":"","attachments":""}}},"contextString":"[input] [emailsenter.js:74] 2016-10-21T10:41:40.658Z ","argsString":"{\n \"app_id\": \"3\",\n \"header\": {\n \"subject\": \"fuckyou\"\n },\n \"body\": {\n \"text\": \"son of a *****\",\n \"html\": \"\",\n \"attachments\": \"\"\n }\n}","message":"[input] [emailsenter.js:74] 2016-10-21T10:41:40.658Z {\n \"app_id\": \"3\",\n \"header\": {\n \"subject\": \"fuckyou\"\n },\n \"body\": {\n \"text\": \"son of a *****\",\n \"html\": \"\",\n \"attachments\": \"\"\n }\n}"} | ||
235 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["output"],"file":true,"time":1477046500666,"location":{"filename":"emailsenter.js","line":148}},"args":{"0":{"resultCode":"40400","resultDescription":"data not found"}},"contextString":"[output] [emailsenter.js:148] 2016-10-21T10:41:40.666Z ","argsString":"{\n \"resultCode\": \"40400\",\n \"resultDescription\": \"data not found\"\n}","message":"[output] [emailsenter.js:148] 2016-10-21T10:41:40.666Z {\n \"resultCode\": \"40400\",\n \"resultDescription\": \"data not found\"\n}"} | ||
236 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477047879231,"location":{"filename":"server.js","line":18}},"args":{"0":"Browse your REST API at %s%s","1":"http://localhost:3000","2":"/explorer"},"contextString":"","argsString":"Browse your REST API at http://localhost:3000/explorer","message":"Browse your REST API at http://localhost:3000/explorer"} | ||
237 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477047879228,"location":{"filename":"server.js","line":15}},"args":{"0":"Web server listening at: %s","1":"http://localhost:3000"},"contextString":"","argsString":"Web server listening at: http://localhost:3000","message":"Web server listening at: http://localhost:3000"} | ||
238 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477048093319,"location":{"filename":"server.js","line":18}},"args":{"0":"Browse your REST API at %s%s","1":"http://localhost:3000","2":"/explorer"},"contextString":"","argsString":"Browse your REST API at http://localhost:3000/explorer","message":"Browse your REST API at http://localhost:3000/explorer"} | ||
239 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477048093315,"location":{"filename":"server.js","line":15}},"args":{"0":"Web server listening at: %s","1":"http://localhost:3000"},"contextString":"","argsString":"Web server listening at: http://localhost:3000","message":"Web server listening at: http://localhost:3000"} | ||
240 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477048164964,"location":{"filename":"server.js","line":18}},"args":{"0":"Browse your REST API at %s%s","1":"http://localhost:3000","2":"/explorer"},"contextString":"","argsString":"Browse your REST API at http://localhost:3000/explorer","message":"Browse your REST API at http://localhost:3000/explorer"} | ||
241 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477048164960,"location":{"filename":"server.js","line":15}},"args":{"0":"Web server listening at: %s","1":"http://localhost:3000"},"contextString":"","argsString":"Web server listening at: http://localhost:3000","message":"Web server listening at: http://localhost:3000"} | ||
242 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477048315981,"location":{"filename":"server.js","line":15}},"args":{"0":"Web server listening at: %s","1":"http://localhost:3000"},"contextString":"","argsString":"Web server listening at: http://localhost:3000","message":"Web server listening at: http://localhost:3000"} | ||
243 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477048315984,"location":{"filename":"server.js","line":18}},"args":{"0":"Browse your REST API at %s%s","1":"http://localhost:3000","2":"/explorer"},"contextString":"","argsString":"Browse your REST API at http://localhost:3000/explorer","message":"Browse your REST API at http://localhost:3000/explorer"} | ||
244 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477048361558,"location":{"filename":"server.js","line":15}},"args":{"0":"Web server listening at: %s","1":"http://localhost:3000"},"contextString":"","argsString":"Web server listening at: http://localhost:3000","message":"Web server listening at: http://localhost:3000"} | ||
245 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477048361561,"location":{"filename":"server.js","line":18}},"args":{"0":"Browse your REST API at %s%s","1":"http://localhost:3000","2":"/explorer"},"contextString":"","argsString":"Browse your REST API at http://localhost:3000/explorer","message":"Browse your REST API at http://localhost:3000/explorer"} | ||
246 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477048460283,"location":{"filename":"server.js","line":15}},"args":{"0":"Web server listening at: %s","1":"http://localhost:3000"},"contextString":"","argsString":"Web server listening at: http://localhost:3000","message":"Web server listening at: http://localhost:3000"} | ||
247 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477048460287,"location":{"filename":"server.js","line":18}},"args":{"0":"Browse your REST API at %s%s","1":"http://localhost:3000","2":"/explorer"},"contextString":"","argsString":"Browse your REST API at http://localhost:3000/explorer","message":"Browse your REST API at http://localhost:3000/explorer"} |
@@ -0,0 +1,155 @@ | @@ -0,0 +1,155 @@ | ||
1 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477359435674,"location":{"filename":"server.js","line":15}},"args":{"0":"Web server listening at: %s","1":"http://localhost:3000"},"contextString":"","argsString":"Web server listening at: http://localhost:3000","message":"Web server listening at: http://localhost:3000"} | ||
2 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477359435689,"location":{"filename":"server.js","line":18}},"args":{"0":"Browse your REST API at %s%s","1":"http://localhost:3000","2":"/explorer"},"contextString":"","argsString":"Browse your REST API at http://localhost:3000/explorer","message":"Browse your REST API at http://localhost:3000/explorer"} | ||
3 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["query output"],"file":true,"time":1477359444234,"location":{"filename":"emails.js","line":22}},"args":{"0":[{"id":1,"app_id":1,"email":"surabill@gmail.com","created_at":"2016-10-20T17:24:54.000Z","modified_at":null,"deleted_at":null},{"id":2,"app_id":1,"email":"deathbill99@gmail.com","created_at":"2016-10-21T10:42:21.000Z","modified_at":null,"deleted_at":null},{"id":3,"app_id":1,"email":"sittisak.kop@gmail.com","created_at":"2016-10-21T10:42:38.000Z","modified_at":null,"deleted_at":null}]},"contextString":"[query output] [emails.js:22] 2016-10-25T01:37:24.234Z ","argsString":"[\n {\n \"id\": 1,\n \"app_id\": 1,\n \"email\": \"surabill@gmail.com\",\n \"created_at\": \"2016-10-20T17:24:54.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 2,\n \"app_id\": 1,\n \"email\": \"deathbill99@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:21.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 3,\n \"app_id\": 1,\n \"email\": \"sittisak.kop@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:38.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n }\n]","message":"[query output] [emails.js:22] 2016-10-25T01:37:24.234Z [\n {\n \"id\": 1,\n \"app_id\": 1,\n \"email\": \"surabill@gmail.com\",\n \"created_at\": \"2016-10-20T17:24:54.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 2,\n \"app_id\": 1,\n \"email\": \"deathbill99@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:21.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 3,\n \"app_id\": 1,\n \"email\": \"sittisak.kop@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:38.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n }\n]"} | ||
4 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["output"],"file":true,"time":1477359444234,"location":{"filename":"emails.js","line":30}},"args":{"0":{"resultCode":"20000","resultDescription":"Success","data":{"user_id":[{"id":1,"app_id":1,"email":"surabill@gmail.com","created_at":"2016-10-20T17:24:54.000Z","modified_at":null,"deleted_at":null},{"id":2,"app_id":1,"email":"deathbill99@gmail.com","created_at":"2016-10-21T10:42:21.000Z","modified_at":null,"deleted_at":null},{"id":3,"app_id":1,"email":"sittisak.kop@gmail.com","created_at":"2016-10-21T10:42:38.000Z","modified_at":null,"deleted_at":null}]}}},"contextString":"[output] [emails.js:30] 2016-10-25T01:37:24.234Z ","argsString":"{\n \"resultCode\": \"20000\",\n \"resultDescription\": \"Success\",\n \"data\": {\n \"user_id\": [\n {\n \"id\": 1,\n \"app_id\": 1,\n \"email\": \"surabill@gmail.com\",\n \"created_at\": \"2016-10-20T17:24:54.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 2,\n \"app_id\": 1,\n \"email\": \"deathbill99@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:21.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 3,\n \"app_id\": 1,\n \"email\": \"sittisak.kop@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:38.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n }\n ]\n }\n}","message":"[output] [emails.js:30] 2016-10-25T01:37:24.234Z {\n \"resultCode\": \"20000\",\n \"resultDescription\": \"Success\",\n \"data\": {\n \"user_id\": [\n {\n \"id\": 1,\n \"app_id\": 1,\n \"email\": \"surabill@gmail.com\",\n \"created_at\": \"2016-10-20T17:24:54.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 2,\n \"app_id\": 1,\n \"email\": \"deathbill99@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:21.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 3,\n \"app_id\": 1,\n \"email\": \"sittisak.kop@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:38.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n }\n ]\n }\n}"} | ||
5 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477359658580,"location":{"filename":"server.js","line":15}},"args":{"0":"Web server listening at: %s","1":"http://localhost:3000"},"contextString":"","argsString":"Web server listening at: http://localhost:3000","message":"Web server listening at: http://localhost:3000"} | ||
6 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477359658580,"location":{"filename":"server.js","line":18}},"args":{"0":"Browse your REST API at %s%s","1":"http://localhost:3000","2":"/explorer"},"contextString":"","argsString":"Browse your REST API at http://localhost:3000/explorer","message":"Browse your REST API at http://localhost:3000/explorer"} | ||
7 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["query"],"file":true,"time":1477359661211,"location":{"filename":"emails.js","line":70}},"args":{"0":"UPDATE scmail SET modified_at ='2016-10-25T08:41:21',email ='surabillz@gmail.com' WHERE id = '1'"},"contextString":"[query] [emails.js:70] 2016-10-25T01:41:01.211Z ","argsString":"UPDATE scmail SET modified_at ='2016-10-25T08:41:21',email ='surabillz@gmail.com' WHERE id = '1'","message":"[query] [emails.js:70] 2016-10-25T01:41:01.211Z UPDATE scmail SET modified_at ='2016-10-25T08:41:21',email ='surabillz@gmail.com' WHERE id = '1'"} | ||
8 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["output"],"file":true,"time":1477359661227,"location":{"filename":"emails.js","line":85}},"args":{"0":{"resultCode":"20000","resultDescription":"Success"}},"contextString":"[output] [emails.js:85] 2016-10-25T01:41:01.227Z ","argsString":"{\n \"resultCode\": \"20000\",\n \"resultDescription\": \"Success\"\n}","message":"[output] [emails.js:85] 2016-10-25T01:41:01.227Z {\n \"resultCode\": \"20000\",\n \"resultDescription\": \"Success\"\n}"} | ||
9 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["query output"],"file":true,"time":1477359671174,"location":{"filename":"emails.js","line":22}},"args":{"0":[{"id":1,"app_id":1,"email":"surabillz@gmail.com","created_at":"2016-10-20T17:24:54.000Z","modified_at":"2016-10-25T08:41:21.000Z","deleted_at":null},{"id":2,"app_id":1,"email":"deathbill99@gmail.com","created_at":"2016-10-21T10:42:21.000Z","modified_at":null,"deleted_at":null},{"id":3,"app_id":1,"email":"sittisak.kop@gmail.com","created_at":"2016-10-21T10:42:38.000Z","modified_at":null,"deleted_at":null}]},"contextString":"[query output] [emails.js:22] 2016-10-25T01:41:11.174Z ","argsString":"[\n {\n \"id\": 1,\n \"app_id\": 1,\n \"email\": \"surabillz@gmail.com\",\n \"created_at\": \"2016-10-20T17:24:54.000Z\",\n \"modified_at\": \"2016-10-25T08:41:21.000Z\",\n \"deleted_at\": null\n },\n {\n \"id\": 2,\n \"app_id\": 1,\n \"email\": \"deathbill99@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:21.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 3,\n \"app_id\": 1,\n \"email\": \"sittisak.kop@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:38.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n }\n]","message":"[query output] [emails.js:22] 2016-10-25T01:41:11.174Z [\n {\n \"id\": 1,\n \"app_id\": 1,\n \"email\": \"surabillz@gmail.com\",\n \"created_at\": \"2016-10-20T17:24:54.000Z\",\n \"modified_at\": \"2016-10-25T08:41:21.000Z\",\n \"deleted_at\": null\n },\n {\n \"id\": 2,\n \"app_id\": 1,\n \"email\": \"deathbill99@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:21.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 3,\n \"app_id\": 1,\n \"email\": \"sittisak.kop@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:38.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n }\n]"} | ||
10 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["output"],"file":true,"time":1477359671177,"location":{"filename":"emails.js","line":30}},"args":{"0":{"resultCode":"20000","resultDescription":"Success","data":{"user_id":[{"id":1,"app_id":1,"email":"surabillz@gmail.com","created_at":"2016-10-20T17:24:54.000Z","modified_at":"2016-10-25T08:41:21.000Z","deleted_at":null},{"id":2,"app_id":1,"email":"deathbill99@gmail.com","created_at":"2016-10-21T10:42:21.000Z","modified_at":null,"deleted_at":null},{"id":3,"app_id":1,"email":"sittisak.kop@gmail.com","created_at":"2016-10-21T10:42:38.000Z","modified_at":null,"deleted_at":null}]}}},"contextString":"[output] [emails.js:30] 2016-10-25T01:41:11.177Z ","argsString":"{\n \"resultCode\": \"20000\",\n \"resultDescription\": \"Success\",\n \"data\": {\n \"user_id\": [\n {\n \"id\": 1,\n \"app_id\": 1,\n \"email\": \"surabillz@gmail.com\",\n \"created_at\": \"2016-10-20T17:24:54.000Z\",\n \"modified_at\": \"2016-10-25T08:41:21.000Z\",\n \"deleted_at\": null\n },\n {\n \"id\": 2,\n \"app_id\": 1,\n \"email\": \"deathbill99@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:21.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 3,\n \"app_id\": 1,\n \"email\": \"sittisak.kop@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:38.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n }\n ]\n }\n}","message":"[output] [emails.js:30] 2016-10-25T01:41:11.177Z {\n \"resultCode\": \"20000\",\n \"resultDescription\": \"Success\",\n \"data\": {\n \"user_id\": [\n {\n \"id\": 1,\n \"app_id\": 1,\n \"email\": \"surabillz@gmail.com\",\n \"created_at\": \"2016-10-20T17:24:54.000Z\",\n \"modified_at\": \"2016-10-25T08:41:21.000Z\",\n \"deleted_at\": null\n },\n {\n \"id\": 2,\n \"app_id\": 1,\n \"email\": \"deathbill99@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:21.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 3,\n \"app_id\": 1,\n \"email\": \"sittisak.kop@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:38.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n }\n ]\n }\n}"} | ||
11 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477359712689,"location":{"filename":"server.js","line":15}},"args":{"0":"Web server listening at: %s","1":"http://localhost:3000"},"contextString":"","argsString":"Web server listening at: http://localhost:3000","message":"Web server listening at: http://localhost:3000"} | ||
12 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477359712689,"location":{"filename":"server.js","line":18}},"args":{"0":"Browse your REST API at %s%s","1":"http://localhost:3000","2":"/explorer"},"contextString":"","argsString":"Browse your REST API at http://localhost:3000/explorer","message":"Browse your REST API at http://localhost:3000/explorer"} | ||
13 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["query output"],"file":true,"time":1477359714316,"location":{"filename":"emails.js","line":22}},"args":{"0":[{"id":1,"app_id":1,"email":"surabillz@gmail.com","created_at":"2016-10-20T17:24:54.000Z","modified_at":"2016-10-25T08:41:21.000Z","deleted_at":null},{"id":2,"app_id":1,"email":"deathbill99@gmail.com","created_at":"2016-10-21T10:42:21.000Z","modified_at":null,"deleted_at":null},{"id":3,"app_id":1,"email":"sittisak.kop@gmail.com","created_at":"2016-10-21T10:42:38.000Z","modified_at":null,"deleted_at":null}]},"contextString":"[query output] [emails.js:22] 2016-10-25T01:41:54.316Z ","argsString":"[\n {\n \"id\": 1,\n \"app_id\": 1,\n \"email\": \"surabillz@gmail.com\",\n \"created_at\": \"2016-10-20T17:24:54.000Z\",\n \"modified_at\": \"2016-10-25T08:41:21.000Z\",\n \"deleted_at\": null\n },\n {\n \"id\": 2,\n \"app_id\": 1,\n \"email\": \"deathbill99@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:21.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 3,\n \"app_id\": 1,\n \"email\": \"sittisak.kop@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:38.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n }\n]","message":"[query output] [emails.js:22] 2016-10-25T01:41:54.316Z [\n {\n \"id\": 1,\n \"app_id\": 1,\n \"email\": \"surabillz@gmail.com\",\n \"created_at\": \"2016-10-20T17:24:54.000Z\",\n \"modified_at\": \"2016-10-25T08:41:21.000Z\",\n \"deleted_at\": null\n },\n {\n \"id\": 2,\n \"app_id\": 1,\n \"email\": \"deathbill99@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:21.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 3,\n \"app_id\": 1,\n \"email\": \"sittisak.kop@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:38.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n }\n]"} | ||
14 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["output"],"file":true,"time":1477359714316,"location":{"filename":"emails.js","line":30}},"args":{"0":{"resultCode":"20000","resultDescription":"Success","data":{"user_id":[{"id":1,"app_id":1,"email":"surabillz@gmail.com","created_at":"2016-10-20T17:24:54.000Z","modified_at":"2016-10-25T08:41:21.000Z","deleted_at":null},{"id":2,"app_id":1,"email":"deathbill99@gmail.com","created_at":"2016-10-21T10:42:21.000Z","modified_at":null,"deleted_at":null},{"id":3,"app_id":1,"email":"sittisak.kop@gmail.com","created_at":"2016-10-21T10:42:38.000Z","modified_at":null,"deleted_at":null}]}}},"contextString":"[output] [emails.js:30] 2016-10-25T01:41:54.316Z ","argsString":"{\n \"resultCode\": \"20000\",\n \"resultDescription\": \"Success\",\n \"data\": {\n \"user_id\": [\n {\n \"id\": 1,\n \"app_id\": 1,\n \"email\": \"surabillz@gmail.com\",\n \"created_at\": \"2016-10-20T17:24:54.000Z\",\n \"modified_at\": \"2016-10-25T08:41:21.000Z\",\n \"deleted_at\": null\n },\n {\n \"id\": 2,\n \"app_id\": 1,\n \"email\": \"deathbill99@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:21.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 3,\n \"app_id\": 1,\n \"email\": \"sittisak.kop@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:38.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n }\n ]\n }\n}","message":"[output] [emails.js:30] 2016-10-25T01:41:54.316Z {\n \"resultCode\": \"20000\",\n \"resultDescription\": \"Success\",\n \"data\": {\n \"user_id\": [\n {\n \"id\": 1,\n \"app_id\": 1,\n \"email\": \"surabillz@gmail.com\",\n \"created_at\": \"2016-10-20T17:24:54.000Z\",\n \"modified_at\": \"2016-10-25T08:41:21.000Z\",\n \"deleted_at\": null\n },\n {\n \"id\": 2,\n \"app_id\": 1,\n \"email\": \"deathbill99@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:21.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 3,\n \"app_id\": 1,\n \"email\": \"sittisak.kop@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:38.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n }\n ]\n }\n}"} | ||
15 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["query"],"file":true,"time":1477359779739,"location":{"filename":"emails.js","line":70}},"args":{"0":"UPDATE scmail SET modified_at ='2016-10-25T08:42:73',email ='undefined' WHERE id = '1'"},"contextString":"[query] [emails.js:70] 2016-10-25T01:42:59.739Z ","argsString":"UPDATE scmail SET modified_at ='2016-10-25T08:42:73',email ='undefined' WHERE id = '1'","message":"[query] [emails.js:70] 2016-10-25T01:42:59.739Z UPDATE scmail SET modified_at ='2016-10-25T08:42:73',email ='undefined' WHERE id = '1'"} | ||
16 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["output"],"file":true,"time":1477359779746,"location":{"filename":"emails.js","line":85}},"args":{"0":{"resultCode":"20000","resultDescription":"Success"}},"contextString":"[output] [emails.js:85] 2016-10-25T01:42:59.746Z ","argsString":"{\n \"resultCode\": \"20000\",\n \"resultDescription\": \"Success\"\n}","message":"[output] [emails.js:85] 2016-10-25T01:42:59.746Z {\n \"resultCode\": \"20000\",\n \"resultDescription\": \"Success\"\n}"} | ||
17 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["query"],"file":true,"time":1477359792380,"location":{"filename":"emails.js","line":70}},"args":{"0":"UPDATE scmail SET modified_at ='2016-10-25T08:43:37',email ='surabillz@gmail.com' WHERE id = '1'"},"contextString":"[query] [emails.js:70] 2016-10-25T01:43:12.380Z ","argsString":"UPDATE scmail SET modified_at ='2016-10-25T08:43:37',email ='surabillz@gmail.com' WHERE id = '1'","message":"[query] [emails.js:70] 2016-10-25T01:43:12.380Z UPDATE scmail SET modified_at ='2016-10-25T08:43:37',email ='surabillz@gmail.com' WHERE id = '1'"} | ||
18 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["output"],"file":true,"time":1477359792385,"location":{"filename":"emails.js","line":85}},"args":{"0":{"resultCode":"20000","resultDescription":"Success"}},"contextString":"[output] [emails.js:85] 2016-10-25T01:43:12.385Z ","argsString":"{\n \"resultCode\": \"20000\",\n \"resultDescription\": \"Success\"\n}","message":"[output] [emails.js:85] 2016-10-25T01:43:12.385Z {\n \"resultCode\": \"20000\",\n \"resultDescription\": \"Success\"\n}"} | ||
19 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477359803659,"location":{"filename":"server.js","line":15}},"args":{"0":"Web server listening at: %s","1":"http://localhost:3000"},"contextString":"","argsString":"Web server listening at: http://localhost:3000","message":"Web server listening at: http://localhost:3000"} | ||
20 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477359803659,"location":{"filename":"server.js","line":18}},"args":{"0":"Browse your REST API at %s%s","1":"http://localhost:3000","2":"/explorer"},"contextString":"","argsString":"Browse your REST API at http://localhost:3000/explorer","message":"Browse your REST API at http://localhost:3000/explorer"} | ||
21 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["query"],"file":true,"time":1477359806003,"location":{"filename":"emails.js","line":97}},"args":{"0":"UPDATE scmail SET deleteEmail ='2016-10-25T08:43:00' WHERE id = '1'"},"contextString":"[query] [emails.js:97] 2016-10-25T01:43:26.003Z ","argsString":"UPDATE scmail SET deleteEmail ='2016-10-25T08:43:00' WHERE id = '1'","message":"[query] [emails.js:97] 2016-10-25T01:43:26.003Z UPDATE scmail SET deleteEmail ='2016-10-25T08:43:00' WHERE id = '1'"} | ||
22 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["output"],"file":true,"time":1477359806010,"location":{"filename":"emails.js","line":104}},"args":{"0":{"resultCode":"50000","resultDescription":"System Error"}},"contextString":"[output] [emails.js:104] 2016-10-25T01:43:26.010Z ","argsString":"{\n \"resultCode\": \"50000\",\n \"resultDescription\": \"System Error\"\n}","message":"[output] [emails.js:104] 2016-10-25T01:43:26.010Z {\n \"resultCode\": \"50000\",\n \"resultDescription\": \"System Error\"\n}"} | ||
23 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477359844487,"location":{"filename":"server.js","line":18}},"args":{"0":"Browse your REST API at %s%s","1":"http://localhost:3000","2":"/explorer"},"contextString":"","argsString":"Browse your REST API at http://localhost:3000/explorer","message":"Browse your REST API at http://localhost:3000/explorer"} | ||
24 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477359844483,"location":{"filename":"server.js","line":15}},"args":{"0":"Web server listening at: %s","1":"http://localhost:3000"},"contextString":"","argsString":"Web server listening at: http://localhost:3000","message":"Web server listening at: http://localhost:3000"} | ||
25 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["query"],"file":true,"time":1477359846490,"location":{"filename":"emails.js","line":97}},"args":{"0":"UPDATE scmail SET deleteEmail ='2016-10-25T08:44:49' WHERE id = '1'"},"contextString":"[query] [emails.js:97] 2016-10-25T01:44:06.490Z ","argsString":"UPDATE scmail SET deleteEmail ='2016-10-25T08:44:49' WHERE id = '1'","message":"[query] [emails.js:97] 2016-10-25T01:44:06.490Z UPDATE scmail SET deleteEmail ='2016-10-25T08:44:49' WHERE id = '1'"} | ||
26 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["output"],"file":true,"time":1477359846495,"location":{"filename":"emails.js","line":104}},"args":{"0":{"resultCode":"50000","resultDescription":"System Error"}},"contextString":"[output] [emails.js:104] 2016-10-25T01:44:06.495Z ","argsString":"{\n \"resultCode\": \"50000\",\n \"resultDescription\": \"System Error\"\n}","message":"[output] [emails.js:104] 2016-10-25T01:44:06.495Z {\n \"resultCode\": \"50000\",\n \"resultDescription\": \"System Error\"\n}"} | ||
27 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477359846496,"location":{"filename":"emails.js","line":105}},"args":{"0":{"code":"ER_BAD_FIELD_ERROR","errno":1054,"sqlState":"42S22","index":0}},"contextString":"","argsString":"{\n \"code\": \"ER_BAD_FIELD_ERROR\",\n \"errno\": 1054,\n \"sqlState\": \"42S22\",\n \"index\": 0\n}","message":"{\n \"code\": \"ER_BAD_FIELD_ERROR\",\n \"errno\": 1054,\n \"sqlState\": \"42S22\",\n \"index\": 0\n}"} | ||
28 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477359894314,"location":{"filename":"server.js","line":15}},"args":{"0":"Web server listening at: %s","1":"http://localhost:3000"},"contextString":"","argsString":"Web server listening at: http://localhost:3000","message":"Web server listening at: http://localhost:3000"} | ||
29 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477359894314,"location":{"filename":"server.js","line":18}},"args":{"0":"Browse your REST API at %s%s","1":"http://localhost:3000","2":"/explorer"},"contextString":"","argsString":"Browse your REST API at http://localhost:3000/explorer","message":"Browse your REST API at http://localhost:3000/explorer"} | ||
30 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["query"],"file":true,"time":1477359896959,"location":{"filename":"emails.js","line":97}},"args":{"0":"UPDATE scmail SET deleted_at ='2016-10-25T08:44:95' WHERE id = '1'"},"contextString":"[query] [emails.js:97] 2016-10-25T01:44:56.959Z ","argsString":"UPDATE scmail SET deleted_at ='2016-10-25T08:44:95' WHERE id = '1'","message":"[query] [emails.js:97] 2016-10-25T01:44:56.959Z UPDATE scmail SET deleted_at ='2016-10-25T08:44:95' WHERE id = '1'"} | ||
31 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["output"],"file":true,"time":1477359896959,"location":{"filename":"emails.js","line":113}},"args":{"0":{"resultCode":"20000","resultDescription":"Success"}},"contextString":"[output] [emails.js:113] 2016-10-25T01:44:56.959Z ","argsString":"{\n \"resultCode\": \"20000\",\n \"resultDescription\": \"Success\"\n}","message":"[output] [emails.js:113] 2016-10-25T01:44:56.959Z {\n \"resultCode\": \"20000\",\n \"resultDescription\": \"Success\"\n}"} | ||
32 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["query output"],"file":true,"time":1477359900205,"location":{"filename":"emails.js","line":22}},"args":{"0":[{"id":2,"app_id":1,"email":"deathbill99@gmail.com","created_at":"2016-10-21T10:42:21.000Z","modified_at":null,"deleted_at":null},{"id":3,"app_id":1,"email":"sittisak.kop@gmail.com","created_at":"2016-10-21T10:42:38.000Z","modified_at":null,"deleted_at":null}]},"contextString":"[query output] [emails.js:22] 2016-10-25T01:45:00.205Z ","argsString":"[\n {\n \"id\": 2,\n \"app_id\": 1,\n \"email\": \"deathbill99@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:21.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 3,\n \"app_id\": 1,\n \"email\": \"sittisak.kop@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:38.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n }\n]","message":"[query output] [emails.js:22] 2016-10-25T01:45:00.205Z [\n {\n \"id\": 2,\n \"app_id\": 1,\n \"email\": \"deathbill99@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:21.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 3,\n \"app_id\": 1,\n \"email\": \"sittisak.kop@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:38.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n }\n]"} | ||
33 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["output"],"file":true,"time":1477359900207,"location":{"filename":"emails.js","line":30}},"args":{"0":{"resultCode":"20000","resultDescription":"Success","data":{"user_id":[{"id":2,"app_id":1,"email":"deathbill99@gmail.com","created_at":"2016-10-21T10:42:21.000Z","modified_at":null,"deleted_at":null},{"id":3,"app_id":1,"email":"sittisak.kop@gmail.com","created_at":"2016-10-21T10:42:38.000Z","modified_at":null,"deleted_at":null}]}}},"contextString":"[output] [emails.js:30] 2016-10-25T01:45:00.207Z ","argsString":"{\n \"resultCode\": \"20000\",\n \"resultDescription\": \"Success\",\n \"data\": {\n \"user_id\": [\n {\n \"id\": 2,\n \"app_id\": 1,\n \"email\": \"deathbill99@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:21.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 3,\n \"app_id\": 1,\n \"email\": \"sittisak.kop@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:38.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n }\n ]\n }\n}","message":"[output] [emails.js:30] 2016-10-25T01:45:00.207Z {\n \"resultCode\": \"20000\",\n \"resultDescription\": \"Success\",\n \"data\": {\n \"user_id\": [\n {\n \"id\": 2,\n \"app_id\": 1,\n \"email\": \"deathbill99@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:21.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 3,\n \"app_id\": 1,\n \"email\": \"sittisak.kop@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:38.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n }\n ]\n }\n}"} | ||
34 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["query"],"file":true,"time":1477359941551,"location":{"filename":"emails.js","line":97}},"args":{"0":"UPDATE scmail SET deleted_at ='2016-10-25T08:45:55' WHERE id = '1'"},"contextString":"[query] [emails.js:97] 2016-10-25T01:45:41.551Z ","argsString":"UPDATE scmail SET deleted_at ='2016-10-25T08:45:55' WHERE id = '1'","message":"[query] [emails.js:97] 2016-10-25T01:45:41.551Z UPDATE scmail SET deleted_at ='2016-10-25T08:45:55' WHERE id = '1'"} | ||
35 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["output"],"file":true,"time":1477359941555,"location":{"filename":"emails.js","line":113}},"args":{"0":{"resultCode":"20000","resultDescription":"Success"}},"contextString":"[output] [emails.js:113] 2016-10-25T01:45:41.555Z ","argsString":"{\n \"resultCode\": \"20000\",\n \"resultDescription\": \"Success\"\n}","message":"[output] [emails.js:113] 2016-10-25T01:45:41.555Z {\n \"resultCode\": \"20000\",\n \"resultDescription\": \"Success\"\n}"} | ||
36 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["input"],"file":true,"time":1477360497181,"location":{"filename":"emailsenter.js","line":16}},"args":{"0":{"header":{"to":"deathbill99@gmail.com","subject":"fuckyou"},"body":{"text":"son of a *****","html":"","attachments":""}}},"contextString":"[input] [emailsenter.js:16] 2016-10-25T01:54:57.181Z ","argsString":"{\n \"header\": {\n \"to\": \"deathbill99@gmail.com\",\n \"subject\": \"fuckyou\"\n },\n \"body\": {\n \"text\": \"son of a *****\",\n \"html\": \"\",\n \"attachments\": \"\"\n }\n}","message":"[input] [emailsenter.js:16] 2016-10-25T01:54:57.181Z {\n \"header\": {\n \"to\": \"deathbill99@gmail.com\",\n \"subject\": \"fuckyou\"\n },\n \"body\": {\n \"text\": \"son of a *****\",\n \"html\": \"\",\n \"attachments\": \"\"\n }\n}"} | ||
37 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["output"],"file":true,"time":1477360499213,"location":{"filename":"emailsenter.js","line":54}},"args":{"0":{"resultCode":"50000","resultDescription":"System error"}},"contextString":"[output] [emailsenter.js:54] 2016-10-25T01:54:59.213Z ","argsString":"{\n \"resultCode\": \"50000\",\n \"resultDescription\": \"System error\"\n}","message":"[output] [emailsenter.js:54] 2016-10-25T01:54:59.213Z {\n \"resultCode\": \"50000\",\n \"resultDescription\": \"System error\"\n}"} | ||
38 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["input"],"file":true,"time":1477360561495,"location":{"filename":"emailsenter.js","line":16}},"args":{"0":{"header":{"to":"deathbill99@gmail.com","subject":"fuckyou"},"body":{"text":"son of a *****","html":"","attachments":""}}},"contextString":"[input] [emailsenter.js:16] 2016-10-25T01:56:01.495Z ","argsString":"{\n \"header\": {\n \"to\": \"deathbill99@gmail.com\",\n \"subject\": \"fuckyou\"\n },\n \"body\": {\n \"text\": \"son of a *****\",\n \"html\": \"\",\n \"attachments\": \"\"\n }\n}","message":"[input] [emailsenter.js:16] 2016-10-25T01:56:01.495Z {\n \"header\": {\n \"to\": \"deathbill99@gmail.com\",\n \"subject\": \"fuckyou\"\n },\n \"body\": {\n \"text\": \"son of a *****\",\n \"html\": \"\",\n \"attachments\": \"\"\n }\n}"} | ||
39 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477360726285,"location":{"filename":"server.js","line":15}},"args":{"0":"Web server listening at: %s","1":"http://localhost:3000"},"contextString":"","argsString":"Web server listening at: http://localhost:3000","message":"Web server listening at: http://localhost:3000"} | ||
40 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477360726285,"location":{"filename":"server.js","line":18}},"args":{"0":"Browse your REST API at %s%s","1":"http://localhost:3000","2":"/explorer"},"contextString":"","argsString":"Browse your REST API at http://localhost:3000/explorer","message":"Browse your REST API at http://localhost:3000/explorer"} | ||
41 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["input"],"file":true,"time":1477360732614,"location":{"filename":"emailsenter.js","line":16}},"args":{"0":{"header":{"to":"deathbill99@gmail.com","subject":"fuckyou"},"body":{"text":"son of a *****","html":"","attachments":""}}},"contextString":"[input] [emailsenter.js:16] 2016-10-25T01:58:52.614Z ","argsString":"{\n \"header\": {\n \"to\": \"deathbill99@gmail.com\",\n \"subject\": \"fuckyou\"\n },\n \"body\": {\n \"text\": \"son of a *****\",\n \"html\": \"\",\n \"attachments\": \"\"\n }\n}","message":"[input] [emailsenter.js:16] 2016-10-25T01:58:52.614Z {\n \"header\": {\n \"to\": \"deathbill99@gmail.com\",\n \"subject\": \"fuckyou\"\n },\n \"body\": {\n \"text\": \"son of a *****\",\n \"html\": \"\",\n \"attachments\": \"\"\n }\n}"} | ||
42 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["output"],"file":true,"time":1477360736012,"location":{"filename":"emailsenter.js","line":61}},"args":{"0":{"resultCode":"20000","resultDescription":"Success"}},"contextString":"[output] [emailsenter.js:61] 2016-10-25T01:58:56.012Z ","argsString":"{\n \"resultCode\": \"20000\",\n \"resultDescription\": \"Success\"\n}","message":"[output] [emailsenter.js:61] 2016-10-25T01:58:56.012Z {\n \"resultCode\": \"20000\",\n \"resultDescription\": \"Success\"\n}"} | ||
43 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["output"],"file":true,"time":1477364088954,"location":{"filename":"emails.js","line":58}},"args":{"0":{"resultCode":"20000","resultDescription":"Success"}},"contextString":"[output] [emails.js:58] 2016-10-25T02:54:48.954Z ","argsString":"{\n \"resultCode\": \"20000\",\n \"resultDescription\": \"Success\"\n}","message":"[output] [emails.js:58] 2016-10-25T02:54:48.954Z {\n \"resultCode\": \"20000\",\n \"resultDescription\": \"Success\"\n}"} | ||
44 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["query output"],"file":true,"time":1477364102909,"location":{"filename":"emails.js","line":22}},"args":{"0":[{"id":2,"app_id":1,"email":"deathbill99@gmail.com","created_at":"2016-10-21T10:42:21.000Z","modified_at":null,"deleted_at":null},{"id":3,"app_id":1,"email":"sittisak.kop@gmail.com","created_at":"2016-10-21T10:42:38.000Z","modified_at":null,"deleted_at":null},{"id":5,"app_id":1,"email":"surabillzA@gmail.com","created_at":null,"modified_at":null,"deleted_at":null}]},"contextString":"[query output] [emails.js:22] 2016-10-25T02:55:02.909Z ","argsString":"[\n {\n \"id\": 2,\n \"app_id\": 1,\n \"email\": \"deathbill99@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:21.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 3,\n \"app_id\": 1,\n \"email\": \"sittisak.kop@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:38.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 5,\n \"app_id\": 1,\n \"email\": \"surabillzA@gmail.com\",\n \"created_at\": null,\n \"modified_at\": null,\n \"deleted_at\": null\n }\n]","message":"[query output] [emails.js:22] 2016-10-25T02:55:02.909Z [\n {\n \"id\": 2,\n \"app_id\": 1,\n \"email\": \"deathbill99@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:21.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 3,\n \"app_id\": 1,\n \"email\": \"sittisak.kop@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:38.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 5,\n \"app_id\": 1,\n \"email\": \"surabillzA@gmail.com\",\n \"created_at\": null,\n \"modified_at\": null,\n \"deleted_at\": null\n }\n]"} | ||
45 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["output"],"file":true,"time":1477364102911,"location":{"filename":"emails.js","line":30}},"args":{"0":{"resultCode":"20000","resultDescription":"Success","data":{"user_id":[{"id":2,"app_id":1,"email":"deathbill99@gmail.com","created_at":"2016-10-21T10:42:21.000Z","modified_at":null,"deleted_at":null},{"id":3,"app_id":1,"email":"sittisak.kop@gmail.com","created_at":"2016-10-21T10:42:38.000Z","modified_at":null,"deleted_at":null},{"id":5,"app_id":1,"email":"surabillzA@gmail.com","created_at":null,"modified_at":null,"deleted_at":null}]}}},"contextString":"[output] [emails.js:30] 2016-10-25T02:55:02.911Z ","argsString":"{\n \"resultCode\": \"20000\",\n \"resultDescription\": \"Success\",\n \"data\": {\n \"user_id\": [\n {\n \"id\": 2,\n \"app_id\": 1,\n \"email\": \"deathbill99@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:21.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 3,\n \"app_id\": 1,\n \"email\": \"sittisak.kop@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:38.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 5,\n \"app_id\": 1,\n \"email\": \"surabillzA@gmail.com\",\n \"created_at\": null,\n \"modified_at\": null,\n \"deleted_at\": null\n }\n ]\n }\n}","message":"[output] [emails.js:30] 2016-10-25T02:55:02.911Z {\n \"resultCode\": \"20000\",\n \"resultDescription\": \"Success\",\n \"data\": {\n \"user_id\": [\n {\n \"id\": 2,\n \"app_id\": 1,\n \"email\": \"deathbill99@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:21.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 3,\n \"app_id\": 1,\n \"email\": \"sittisak.kop@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:38.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 5,\n \"app_id\": 1,\n \"email\": \"surabillzA@gmail.com\",\n \"created_at\": null,\n \"modified_at\": null,\n \"deleted_at\": null\n }\n ]\n }\n}"} | ||
46 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477364237127,"location":{"filename":"server.js","line":15}},"args":{"0":"Web server listening at: %s","1":"http://localhost:3000"},"contextString":"","argsString":"Web server listening at: http://localhost:3000","message":"Web server listening at: http://localhost:3000"} | ||
47 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477364237131,"location":{"filename":"server.js","line":18}},"args":{"0":"Browse your REST API at %s%s","1":"http://localhost:3000","2":"/explorer"},"contextString":"","argsString":"Browse your REST API at http://localhost:3000/explorer","message":"Browse your REST API at http://localhost:3000/explorer"} | ||
48 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["output"],"file":true,"time":1477364241332,"location":{"filename":"emails.js","line":61}},"args":{"0":{"resultCode":"20000","resultDescription":"Success"}},"contextString":"[output] [emails.js:61] 2016-10-25T02:57:21.332Z ","argsString":"{\n \"resultCode\": \"20000\",\n \"resultDescription\": \"Success\"\n}","message":"[output] [emails.js:61] 2016-10-25T02:57:21.332Z {\n \"resultCode\": \"20000\",\n \"resultDescription\": \"Success\"\n}"} | ||
49 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["query output"],"file":true,"time":1477364245932,"location":{"filename":"emails.js","line":22}},"args":{"0":[{"id":2,"app_id":1,"email":"deathbill99@gmail.com","created_at":"2016-10-21T10:42:21.000Z","modified_at":null,"deleted_at":null},{"id":3,"app_id":1,"email":"sittisak.kop@gmail.com","created_at":"2016-10-21T10:42:38.000Z","modified_at":null,"deleted_at":null},{"id":5,"app_id":1,"email":"surabillzA@gmail.com","created_at":null,"modified_at":null,"deleted_at":null},{"id":6,"app_id":1,"email":"surabillzA@gmail.com","created_at":"2016-10-25T09:57:31.000Z","modified_at":null,"deleted_at":null}]},"contextString":"[query output] [emails.js:22] 2016-10-25T02:57:25.932Z ","argsString":"[\n {\n \"id\": 2,\n \"app_id\": 1,\n \"email\": \"deathbill99@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:21.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 3,\n \"app_id\": 1,\n \"email\": \"sittisak.kop@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:38.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 5,\n \"app_id\": 1,\n \"email\": \"surabillzA@gmail.com\",\n \"created_at\": null,\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 6,\n \"app_id\": 1,\n \"email\": \"surabillzA@gmail.com\",\n \"created_at\": \"2016-10-25T09:57:31.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n }\n]","message":"[query output] [emails.js:22] 2016-10-25T02:57:25.932Z [\n {\n \"id\": 2,\n \"app_id\": 1,\n \"email\": \"deathbill99@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:21.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 3,\n \"app_id\": 1,\n \"email\": \"sittisak.kop@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:38.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 5,\n \"app_id\": 1,\n \"email\": \"surabillzA@gmail.com\",\n \"created_at\": null,\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 6,\n \"app_id\": 1,\n \"email\": \"surabillzA@gmail.com\",\n \"created_at\": \"2016-10-25T09:57:31.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n }\n]"} | ||
50 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["output"],"file":true,"time":1477364245934,"location":{"filename":"emails.js","line":30}},"args":{"0":{"resultCode":"20000","resultDescription":"Success","data":{"user_id":[{"id":2,"app_id":1,"email":"deathbill99@gmail.com","created_at":"2016-10-21T10:42:21.000Z","modified_at":null,"deleted_at":null},{"id":3,"app_id":1,"email":"sittisak.kop@gmail.com","created_at":"2016-10-21T10:42:38.000Z","modified_at":null,"deleted_at":null},{"id":5,"app_id":1,"email":"surabillzA@gmail.com","created_at":null,"modified_at":null,"deleted_at":null},{"id":6,"app_id":1,"email":"surabillzA@gmail.com","created_at":"2016-10-25T09:57:31.000Z","modified_at":null,"deleted_at":null}]}}},"contextString":"[output] [emails.js:30] 2016-10-25T02:57:25.934Z ","argsString":"{\n \"resultCode\": \"20000\",\n \"resultDescription\": \"Success\",\n \"data\": {\n \"user_id\": [\n {\n \"id\": 2,\n \"app_id\": 1,\n \"email\": \"deathbill99@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:21.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 3,\n \"app_id\": 1,\n \"email\": \"sittisak.kop@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:38.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 5,\n \"app_id\": 1,\n \"email\": \"surabillzA@gmail.com\",\n \"created_at\": null,\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 6,\n \"app_id\": 1,\n \"email\": \"surabillzA@gmail.com\",\n \"created_at\": \"2016-10-25T09:57:31.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n }\n ]\n }\n}","message":"[output] [emails.js:30] 2016-10-25T02:57:25.934Z {\n \"resultCode\": \"20000\",\n \"resultDescription\": \"Success\",\n \"data\": {\n \"user_id\": [\n {\n \"id\": 2,\n \"app_id\": 1,\n \"email\": \"deathbill99@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:21.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 3,\n \"app_id\": 1,\n \"email\": \"sittisak.kop@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:38.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 5,\n \"app_id\": 1,\n \"email\": \"surabillzA@gmail.com\",\n \"created_at\": null,\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 6,\n \"app_id\": 1,\n \"email\": \"surabillzA@gmail.com\",\n \"created_at\": \"2016-10-25T09:57:31.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n }\n ]\n }\n}"} | ||
51 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["query"],"file":true,"time":1477364270248,"location":{"filename":"emails.js","line":73}},"args":{"0":"UPDATE scmail SET modified_at ='2016-10-25T09:57:24',email ='surabil5lz@gmail.com' WHERE id = '6'"},"contextString":"[query] [emails.js:73] 2016-10-25T02:57:50.248Z ","argsString":"UPDATE scmail SET modified_at ='2016-10-25T09:57:24',email ='surabil5lz@gmail.com' WHERE id = '6'","message":"[query] [emails.js:73] 2016-10-25T02:57:50.248Z UPDATE scmail SET modified_at ='2016-10-25T09:57:24',email ='surabil5lz@gmail.com' WHERE id = '6'"} | ||
52 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["output"],"file":true,"time":1477364270254,"location":{"filename":"emails.js","line":88}},"args":{"0":{"resultCode":"20000","resultDescription":"Success"}},"contextString":"[output] [emails.js:88] 2016-10-25T02:57:50.254Z ","argsString":"{\n \"resultCode\": \"20000\",\n \"resultDescription\": \"Success\"\n}","message":"[output] [emails.js:88] 2016-10-25T02:57:50.254Z {\n \"resultCode\": \"20000\",\n \"resultDescription\": \"Success\"\n}"} | ||
53 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["query output"],"file":true,"time":1477364275136,"location":{"filename":"emails.js","line":22}},"args":{"0":[{"id":2,"app_id":1,"email":"deathbill99@gmail.com","created_at":"2016-10-21T10:42:21.000Z","modified_at":null,"deleted_at":null},{"id":3,"app_id":1,"email":"sittisak.kop@gmail.com","created_at":"2016-10-21T10:42:38.000Z","modified_at":null,"deleted_at":null},{"id":5,"app_id":1,"email":"surabillzA@gmail.com","created_at":null,"modified_at":null,"deleted_at":null},{"id":6,"app_id":1,"email":"surabil5lz@gmail.com","created_at":"2016-10-25T09:57:31.000Z","modified_at":"2016-10-25T09:57:24.000Z","deleted_at":null}]},"contextString":"[query output] [emails.js:22] 2016-10-25T02:57:55.136Z ","argsString":"[\n {\n \"id\": 2,\n \"app_id\": 1,\n \"email\": \"deathbill99@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:21.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 3,\n \"app_id\": 1,\n \"email\": \"sittisak.kop@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:38.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 5,\n \"app_id\": 1,\n \"email\": \"surabillzA@gmail.com\",\n \"created_at\": null,\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 6,\n \"app_id\": 1,\n \"email\": \"surabil5lz@gmail.com\",\n \"created_at\": \"2016-10-25T09:57:31.000Z\",\n \"modified_at\": \"2016-10-25T09:57:24.000Z\",\n \"deleted_at\": null\n }\n]","message":"[query output] [emails.js:22] 2016-10-25T02:57:55.136Z [\n {\n \"id\": 2,\n \"app_id\": 1,\n \"email\": \"deathbill99@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:21.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 3,\n \"app_id\": 1,\n \"email\": \"sittisak.kop@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:38.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 5,\n \"app_id\": 1,\n \"email\": \"surabillzA@gmail.com\",\n \"created_at\": null,\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 6,\n \"app_id\": 1,\n \"email\": \"surabil5lz@gmail.com\",\n \"created_at\": \"2016-10-25T09:57:31.000Z\",\n \"modified_at\": \"2016-10-25T09:57:24.000Z\",\n \"deleted_at\": null\n }\n]"} | ||
54 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["output"],"file":true,"time":1477364275137,"location":{"filename":"emails.js","line":30}},"args":{"0":{"resultCode":"20000","resultDescription":"Success","data":{"user_id":[{"id":2,"app_id":1,"email":"deathbill99@gmail.com","created_at":"2016-10-21T10:42:21.000Z","modified_at":null,"deleted_at":null},{"id":3,"app_id":1,"email":"sittisak.kop@gmail.com","created_at":"2016-10-21T10:42:38.000Z","modified_at":null,"deleted_at":null},{"id":5,"app_id":1,"email":"surabillzA@gmail.com","created_at":null,"modified_at":null,"deleted_at":null},{"id":6,"app_id":1,"email":"surabil5lz@gmail.com","created_at":"2016-10-25T09:57:31.000Z","modified_at":"2016-10-25T09:57:24.000Z","deleted_at":null}]}}},"contextString":"[output] [emails.js:30] 2016-10-25T02:57:55.137Z ","argsString":"{\n \"resultCode\": \"20000\",\n \"resultDescription\": \"Success\",\n \"data\": {\n \"user_id\": [\n {\n \"id\": 2,\n \"app_id\": 1,\n \"email\": \"deathbill99@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:21.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 3,\n \"app_id\": 1,\n \"email\": \"sittisak.kop@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:38.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 5,\n \"app_id\": 1,\n \"email\": \"surabillzA@gmail.com\",\n \"created_at\": null,\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 6,\n \"app_id\": 1,\n \"email\": \"surabil5lz@gmail.com\",\n \"created_at\": \"2016-10-25T09:57:31.000Z\",\n \"modified_at\": \"2016-10-25T09:57:24.000Z\",\n \"deleted_at\": null\n }\n ]\n }\n}","message":"[output] [emails.js:30] 2016-10-25T02:57:55.137Z {\n \"resultCode\": \"20000\",\n \"resultDescription\": \"Success\",\n \"data\": {\n \"user_id\": [\n {\n \"id\": 2,\n \"app_id\": 1,\n \"email\": \"deathbill99@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:21.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 3,\n \"app_id\": 1,\n \"email\": \"sittisak.kop@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:38.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 5,\n \"app_id\": 1,\n \"email\": \"surabillzA@gmail.com\",\n \"created_at\": null,\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 6,\n \"app_id\": 1,\n \"email\": \"surabil5lz@gmail.com\",\n \"created_at\": \"2016-10-25T09:57:31.000Z\",\n \"modified_at\": \"2016-10-25T09:57:24.000Z\",\n \"deleted_at\": null\n }\n ]\n }\n}"} | ||
55 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477368972366,"location":{"filename":"server.js","line":15}},"args":{"0":"Web server listening at: %s","1":"http://localhost:3000"},"contextString":"","argsString":"Web server listening at: http://localhost:3000","message":"Web server listening at: http://localhost:3000"} | ||
56 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477368972370,"location":{"filename":"server.js","line":18}},"args":{"0":"Browse your REST API at %s%s","1":"http://localhost:3000","2":"/explorer"},"contextString":"","argsString":"Browse your REST API at http://localhost:3000/explorer","message":"Browse your REST API at http://localhost:3000/explorer"} | ||
57 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["output"],"file":true,"time":1477368998024,"location":{"filename":"emails.js","line":61}},"args":{"0":{"resultCode":"20000","resultDescription":"Success"}},"contextString":"[output] [emails.js:61] 2016-10-25T04:16:38.024Z ","argsString":"{\n \"resultCode\": \"20000\",\n \"resultDescription\": \"Success\"\n}","message":"[output] [emails.js:61] 2016-10-25T04:16:38.024Z {\n \"resultCode\": \"20000\",\n \"resultDescription\": \"Success\"\n}"} | ||
58 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["output"],"file":true,"time":1477369005085,"location":{"filename":"emails.js","line":61}},"args":{"0":{"resultCode":"20000","resultDescription":"Success"}},"contextString":"[output] [emails.js:61] 2016-10-25T04:16:45.085Z ","argsString":"{\n \"resultCode\": \"20000\",\n \"resultDescription\": \"Success\"\n}","message":"[output] [emails.js:61] 2016-10-25T04:16:45.085Z {\n \"resultCode\": \"20000\",\n \"resultDescription\": \"Success\"\n}"} | ||
59 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["output"],"file":true,"time":1477369022209,"location":{"filename":"emails.js","line":61}},"args":{"0":{"resultCode":"20000","resultDescription":"Success"}},"contextString":"[output] [emails.js:61] 2016-10-25T04:17:02.209Z ","argsString":"{\n \"resultCode\": \"20000\",\n \"resultDescription\": \"Success\"\n}","message":"[output] [emails.js:61] 2016-10-25T04:17:02.209Z {\n \"resultCode\": \"20000\",\n \"resultDescription\": \"Success\"\n}"} | ||
60 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477369053611,"location":{"filename":"server.js","line":15}},"args":{"0":"Web server listening at: %s","1":"http://localhost:3000"},"contextString":"","argsString":"Web server listening at: http://localhost:3000","message":"Web server listening at: http://localhost:3000"} | ||
61 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477369053614,"location":{"filename":"server.js","line":18}},"args":{"0":"Browse your REST API at %s%s","1":"http://localhost:3000","2":"/explorer"},"contextString":"","argsString":"Browse your REST API at http://localhost:3000/explorer","message":"Browse your REST API at http://localhost:3000/explorer"} | ||
62 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["output"],"file":true,"time":1477369054936,"location":{"filename":"emails.js","line":61}},"args":{"0":{"resultCode":"20000","resultDescription":"Success"}},"contextString":"[output] [emails.js:61] 2016-10-25T04:17:34.936Z ","argsString":"{\n \"resultCode\": \"20000\",\n \"resultDescription\": \"Success\"\n}","message":"[output] [emails.js:61] 2016-10-25T04:17:34.936Z {\n \"resultCode\": \"20000\",\n \"resultDescription\": \"Success\"\n}"} | ||
63 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["output"],"file":true,"time":1477369057361,"location":{"filename":"emails.js","line":61}},"args":{"0":{"resultCode":"20000","resultDescription":"Success"}},"contextString":"[output] [emails.js:61] 2016-10-25T04:17:37.361Z ","argsString":"{\n \"resultCode\": \"20000\",\n \"resultDescription\": \"Success\"\n}","message":"[output] [emails.js:61] 2016-10-25T04:17:37.361Z {\n \"resultCode\": \"20000\",\n \"resultDescription\": \"Success\"\n}"} | ||
64 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["output"],"file":true,"time":1477369057871,"location":{"filename":"emails.js","line":61}},"args":{"0":{"resultCode":"20000","resultDescription":"Success"}},"contextString":"[output] [emails.js:61] 2016-10-25T04:17:37.871Z ","argsString":"{\n \"resultCode\": \"20000\",\n \"resultDescription\": \"Success\"\n}","message":"[output] [emails.js:61] 2016-10-25T04:17:37.871Z {\n \"resultCode\": \"20000\",\n \"resultDescription\": \"Success\"\n}"} | ||
65 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["output"],"file":true,"time":1477369058221,"location":{"filename":"emails.js","line":61}},"args":{"0":{"resultCode":"20000","resultDescription":"Success"}},"contextString":"[output] [emails.js:61] 2016-10-25T04:17:38.221Z ","argsString":"{\n \"resultCode\": \"20000\",\n \"resultDescription\": \"Success\"\n}","message":"[output] [emails.js:61] 2016-10-25T04:17:38.221Z {\n \"resultCode\": \"20000\",\n \"resultDescription\": \"Success\"\n}"} | ||
66 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["output"],"file":true,"time":1477369058492,"location":{"filename":"emails.js","line":61}},"args":{"0":{"resultCode":"20000","resultDescription":"Success"}},"contextString":"[output] [emails.js:61] 2016-10-25T04:17:38.492Z ","argsString":"{\n \"resultCode\": \"20000\",\n \"resultDescription\": \"Success\"\n}","message":"[output] [emails.js:61] 2016-10-25T04:17:38.492Z {\n \"resultCode\": \"20000\",\n \"resultDescription\": \"Success\"\n}"} | ||
67 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["output"],"file":true,"time":1477369058749,"location":{"filename":"emails.js","line":61}},"args":{"0":{"resultCode":"20000","resultDescription":"Success"}},"contextString":"[output] [emails.js:61] 2016-10-25T04:17:38.749Z ","argsString":"{\n \"resultCode\": \"20000\",\n \"resultDescription\": \"Success\"\n}","message":"[output] [emails.js:61] 2016-10-25T04:17:38.749Z {\n \"resultCode\": \"20000\",\n \"resultDescription\": \"Success\"\n}"} | ||
68 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["output"],"file":true,"time":1477369059005,"location":{"filename":"emails.js","line":61}},"args":{"0":{"resultCode":"20000","resultDescription":"Success"}},"contextString":"[output] [emails.js:61] 2016-10-25T04:17:39.005Z ","argsString":"{\n \"resultCode\": \"20000\",\n \"resultDescription\": \"Success\"\n}","message":"[output] [emails.js:61] 2016-10-25T04:17:39.005Z {\n \"resultCode\": \"20000\",\n \"resultDescription\": \"Success\"\n}"} | ||
69 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["output"],"file":true,"time":1477369059231,"location":{"filename":"emails.js","line":61}},"args":{"0":{"resultCode":"20000","resultDescription":"Success"}},"contextString":"[output] [emails.js:61] 2016-10-25T04:17:39.231Z ","argsString":"{\n \"resultCode\": \"20000\",\n \"resultDescription\": \"Success\"\n}","message":"[output] [emails.js:61] 2016-10-25T04:17:39.231Z {\n \"resultCode\": \"20000\",\n \"resultDescription\": \"Success\"\n}"} | ||
70 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["output"],"file":true,"time":1477369059452,"location":{"filename":"emails.js","line":61}},"args":{"0":{"resultCode":"20000","resultDescription":"Success"}},"contextString":"[output] [emails.js:61] 2016-10-25T04:17:39.452Z ","argsString":"{\n \"resultCode\": \"20000\",\n \"resultDescription\": \"Success\"\n}","message":"[output] [emails.js:61] 2016-10-25T04:17:39.452Z {\n \"resultCode\": \"20000\",\n \"resultDescription\": \"Success\"\n}"} | ||
71 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["output"],"file":true,"time":1477369059644,"location":{"filename":"emails.js","line":61}},"args":{"0":{"resultCode":"20000","resultDescription":"Success"}},"contextString":"[output] [emails.js:61] 2016-10-25T04:17:39.644Z ","argsString":"{\n \"resultCode\": \"20000\",\n \"resultDescription\": \"Success\"\n}","message":"[output] [emails.js:61] 2016-10-25T04:17:39.644Z {\n \"resultCode\": \"20000\",\n \"resultDescription\": \"Success\"\n}"} | ||
72 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["output"],"file":true,"time":1477369059818,"location":{"filename":"emails.js","line":61}},"args":{"0":{"resultCode":"20000","resultDescription":"Success"}},"contextString":"[output] [emails.js:61] 2016-10-25T04:17:39.818Z ","argsString":"{\n \"resultCode\": \"20000\",\n \"resultDescription\": \"Success\"\n}","message":"[output] [emails.js:61] 2016-10-25T04:17:39.818Z {\n \"resultCode\": \"20000\",\n \"resultDescription\": \"Success\"\n}"} | ||
73 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["output"],"file":true,"time":1477369060015,"location":{"filename":"emails.js","line":61}},"args":{"0":{"resultCode":"20000","resultDescription":"Success"}},"contextString":"[output] [emails.js:61] 2016-10-25T04:17:40.015Z ","argsString":"{\n \"resultCode\": \"20000\",\n \"resultDescription\": \"Success\"\n}","message":"[output] [emails.js:61] 2016-10-25T04:17:40.015Z {\n \"resultCode\": \"20000\",\n \"resultDescription\": \"Success\"\n}"} | ||
74 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["output"],"file":true,"time":1477369060188,"location":{"filename":"emails.js","line":61}},"args":{"0":{"resultCode":"20000","resultDescription":"Success"}},"contextString":"[output] [emails.js:61] 2016-10-25T04:17:40.188Z ","argsString":"{\n \"resultCode\": \"20000\",\n \"resultDescription\": \"Success\"\n}","message":"[output] [emails.js:61] 2016-10-25T04:17:40.188Z {\n \"resultCode\": \"20000\",\n \"resultDescription\": \"Success\"\n}"} | ||
75 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["output"],"file":true,"time":1477369060380,"location":{"filename":"emails.js","line":61}},"args":{"0":{"resultCode":"20000","resultDescription":"Success"}},"contextString":"[output] [emails.js:61] 2016-10-25T04:17:40.380Z ","argsString":"{\n \"resultCode\": \"20000\",\n \"resultDescription\": \"Success\"\n}","message":"[output] [emails.js:61] 2016-10-25T04:17:40.380Z {\n \"resultCode\": \"20000\",\n \"resultDescription\": \"Success\"\n}"} | ||
76 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["output"],"file":true,"time":1477369060557,"location":{"filename":"emails.js","line":61}},"args":{"0":{"resultCode":"20000","resultDescription":"Success"}},"contextString":"[output] [emails.js:61] 2016-10-25T04:17:40.557Z ","argsString":"{\n \"resultCode\": \"20000\",\n \"resultDescription\": \"Success\"\n}","message":"[output] [emails.js:61] 2016-10-25T04:17:40.557Z {\n \"resultCode\": \"20000\",\n \"resultDescription\": \"Success\"\n}"} | ||
77 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["output"],"file":true,"time":1477369060727,"location":{"filename":"emails.js","line":61}},"args":{"0":{"resultCode":"20000","resultDescription":"Success"}},"contextString":"[output] [emails.js:61] 2016-10-25T04:17:40.727Z ","argsString":"{\n \"resultCode\": \"20000\",\n \"resultDescription\": \"Success\"\n}","message":"[output] [emails.js:61] 2016-10-25T04:17:40.727Z {\n \"resultCode\": \"20000\",\n \"resultDescription\": \"Success\"\n}"} | ||
78 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477378822849,"location":{"filename":"server.js","line":15}},"args":{"0":"Web server listening at: %s","1":"http://localhost:3000"},"contextString":"","argsString":"Web server listening at: http://localhost:3000","message":"Web server listening at: http://localhost:3000"} | ||
79 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477378822853,"location":{"filename":"server.js","line":18}},"args":{"0":"Browse your REST API at %s%s","1":"http://localhost:3000","2":"/explorer"},"contextString":"","argsString":"Browse your REST API at http://localhost:3000/explorer","message":"Browse your REST API at http://localhost:3000/explorer"} | ||
80 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["output"],"file":true,"time":1477378840072,"location":{"filename":"emails.js","line":30}},"args":{"0":{"resultCode":"20000","resultDescription":"Success","data":{"user_id":[{"id":2,"app_id":1,"email":"deathbill99@gmail.com","created_at":"2016-10-21T10:42:21.000Z","modified_at":null,"deleted_at":null},{"id":3,"app_id":1,"email":"sittisak.kop@gmail.com","created_at":"2016-10-21T10:42:38.000Z","modified_at":null,"deleted_at":null},{"id":5,"app_id":1,"email":"surabillzA@gmail.com","created_at":null,"modified_at":null,"deleted_at":null},{"id":6,"app_id":1,"email":"surabil5lz@gmail.com","created_at":"2016-10-25T09:57:31.000Z","modified_at":"2016-10-25T09:57:24.000Z","deleted_at":null}]}}},"contextString":"[output] [emails.js:30] 2016-10-25T07:00:40.072Z ","argsString":"{\n \"resultCode\": \"20000\",\n \"resultDescription\": \"Success\",\n \"data\": {\n \"user_id\": [\n {\n \"id\": 2,\n \"app_id\": 1,\n \"email\": \"deathbill99@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:21.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 3,\n \"app_id\": 1,\n \"email\": \"sittisak.kop@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:38.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 5,\n \"app_id\": 1,\n \"email\": \"surabillzA@gmail.com\",\n \"created_at\": null,\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 6,\n \"app_id\": 1,\n \"email\": \"surabil5lz@gmail.com\",\n \"created_at\": \"2016-10-25T09:57:31.000Z\",\n \"modified_at\": \"2016-10-25T09:57:24.000Z\",\n \"deleted_at\": null\n }\n ]\n }\n}","message":"[output] [emails.js:30] 2016-10-25T07:00:40.072Z {\n \"resultCode\": \"20000\",\n \"resultDescription\": \"Success\",\n \"data\": {\n \"user_id\": [\n {\n \"id\": 2,\n \"app_id\": 1,\n \"email\": \"deathbill99@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:21.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 3,\n \"app_id\": 1,\n \"email\": \"sittisak.kop@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:38.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 5,\n \"app_id\": 1,\n \"email\": \"surabillzA@gmail.com\",\n \"created_at\": null,\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 6,\n \"app_id\": 1,\n \"email\": \"surabil5lz@gmail.com\",\n \"created_at\": \"2016-10-25T09:57:31.000Z\",\n \"modified_at\": \"2016-10-25T09:57:24.000Z\",\n \"deleted_at\": null\n }\n ]\n }\n}"} | ||
81 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["query output"],"file":true,"time":1477378840070,"location":{"filename":"emails.js","line":22}},"args":{"0":[{"id":2,"app_id":1,"email":"deathbill99@gmail.com","created_at":"2016-10-21T10:42:21.000Z","modified_at":null,"deleted_at":null},{"id":3,"app_id":1,"email":"sittisak.kop@gmail.com","created_at":"2016-10-21T10:42:38.000Z","modified_at":null,"deleted_at":null},{"id":5,"app_id":1,"email":"surabillzA@gmail.com","created_at":null,"modified_at":null,"deleted_at":null},{"id":6,"app_id":1,"email":"surabil5lz@gmail.com","created_at":"2016-10-25T09:57:31.000Z","modified_at":"2016-10-25T09:57:24.000Z","deleted_at":null}]},"contextString":"[query output] [emails.js:22] 2016-10-25T07:00:40.070Z ","argsString":"[\n {\n \"id\": 2,\n \"app_id\": 1,\n \"email\": \"deathbill99@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:21.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 3,\n \"app_id\": 1,\n \"email\": \"sittisak.kop@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:38.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 5,\n \"app_id\": 1,\n \"email\": \"surabillzA@gmail.com\",\n \"created_at\": null,\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 6,\n \"app_id\": 1,\n \"email\": \"surabil5lz@gmail.com\",\n \"created_at\": \"2016-10-25T09:57:31.000Z\",\n \"modified_at\": \"2016-10-25T09:57:24.000Z\",\n \"deleted_at\": null\n }\n]","message":"[query output] [emails.js:22] 2016-10-25T07:00:40.070Z [\n {\n \"id\": 2,\n \"app_id\": 1,\n \"email\": \"deathbill99@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:21.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 3,\n \"app_id\": 1,\n \"email\": \"sittisak.kop@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:38.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 5,\n \"app_id\": 1,\n \"email\": \"surabillzA@gmail.com\",\n \"created_at\": null,\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 6,\n \"app_id\": 1,\n \"email\": \"surabil5lz@gmail.com\",\n \"created_at\": \"2016-10-25T09:57:31.000Z\",\n \"modified_at\": \"2016-10-25T09:57:24.000Z\",\n \"deleted_at\": null\n }\n]"} | ||
82 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["output"],"file":true,"time":1477378877762,"location":{"filename":"emails.js","line":30}},"args":{"0":{"resultCode":"20000","resultDescription":"Success","data":{"user_id":[{"id":2,"app_id":1,"email":"deathbill99@gmail.com","created_at":"2016-10-21T10:42:21.000Z","modified_at":null,"deleted_at":null},{"id":3,"app_id":1,"email":"sittisak.kop@gmail.com","created_at":"2016-10-21T10:42:38.000Z","modified_at":null,"deleted_at":null},{"id":5,"app_id":1,"email":"surabillzA@gmail.com","created_at":null,"modified_at":null,"deleted_at":null},{"id":6,"app_id":1,"email":"surabil5lz@gmail.com","created_at":"2016-10-25T09:57:31.000Z","modified_at":"2016-10-25T09:57:24.000Z","deleted_at":null}]}}},"contextString":"[output] [emails.js:30] 2016-10-25T07:01:17.762Z ","argsString":"{\n \"resultCode\": \"20000\",\n \"resultDescription\": \"Success\",\n \"data\": {\n \"user_id\": [\n {\n \"id\": 2,\n \"app_id\": 1,\n \"email\": \"deathbill99@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:21.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 3,\n \"app_id\": 1,\n \"email\": \"sittisak.kop@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:38.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 5,\n \"app_id\": 1,\n \"email\": \"surabillzA@gmail.com\",\n \"created_at\": null,\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 6,\n \"app_id\": 1,\n \"email\": \"surabil5lz@gmail.com\",\n \"created_at\": \"2016-10-25T09:57:31.000Z\",\n \"modified_at\": \"2016-10-25T09:57:24.000Z\",\n \"deleted_at\": null\n }\n ]\n }\n}","message":"[output] [emails.js:30] 2016-10-25T07:01:17.762Z {\n \"resultCode\": \"20000\",\n \"resultDescription\": \"Success\",\n \"data\": {\n \"user_id\": [\n {\n \"id\": 2,\n \"app_id\": 1,\n \"email\": \"deathbill99@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:21.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 3,\n \"app_id\": 1,\n \"email\": \"sittisak.kop@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:38.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 5,\n \"app_id\": 1,\n \"email\": \"surabillzA@gmail.com\",\n \"created_at\": null,\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 6,\n \"app_id\": 1,\n \"email\": \"surabil5lz@gmail.com\",\n \"created_at\": \"2016-10-25T09:57:31.000Z\",\n \"modified_at\": \"2016-10-25T09:57:24.000Z\",\n \"deleted_at\": null\n }\n ]\n }\n}"} | ||
83 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["query output"],"file":true,"time":1477378877751,"location":{"filename":"emails.js","line":22}},"args":{"0":[{"id":2,"app_id":1,"email":"deathbill99@gmail.com","created_at":"2016-10-21T10:42:21.000Z","modified_at":null,"deleted_at":null},{"id":3,"app_id":1,"email":"sittisak.kop@gmail.com","created_at":"2016-10-21T10:42:38.000Z","modified_at":null,"deleted_at":null},{"id":5,"app_id":1,"email":"surabillzA@gmail.com","created_at":null,"modified_at":null,"deleted_at":null},{"id":6,"app_id":1,"email":"surabil5lz@gmail.com","created_at":"2016-10-25T09:57:31.000Z","modified_at":"2016-10-25T09:57:24.000Z","deleted_at":null}]},"contextString":"[query output] [emails.js:22] 2016-10-25T07:01:17.751Z ","argsString":"[\n {\n \"id\": 2,\n \"app_id\": 1,\n \"email\": \"deathbill99@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:21.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 3,\n \"app_id\": 1,\n \"email\": \"sittisak.kop@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:38.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 5,\n \"app_id\": 1,\n \"email\": \"surabillzA@gmail.com\",\n \"created_at\": null,\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 6,\n \"app_id\": 1,\n \"email\": \"surabil5lz@gmail.com\",\n \"created_at\": \"2016-10-25T09:57:31.000Z\",\n \"modified_at\": \"2016-10-25T09:57:24.000Z\",\n \"deleted_at\": null\n }\n]","message":"[query output] [emails.js:22] 2016-10-25T07:01:17.751Z [\n {\n \"id\": 2,\n \"app_id\": 1,\n \"email\": \"deathbill99@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:21.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 3,\n \"app_id\": 1,\n \"email\": \"sittisak.kop@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:38.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 5,\n \"app_id\": 1,\n \"email\": \"surabillzA@gmail.com\",\n \"created_at\": null,\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 6,\n \"app_id\": 1,\n \"email\": \"surabil5lz@gmail.com\",\n \"created_at\": \"2016-10-25T09:57:31.000Z\",\n \"modified_at\": \"2016-10-25T09:57:24.000Z\",\n \"deleted_at\": null\n }\n]"} | ||
84 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["output"],"file":true,"time":1477378884695,"location":{"filename":"emails.js","line":61}},"args":{"0":{"resultCode":"20000","resultDescription":"Success"}},"contextString":"[output] [emails.js:61] 2016-10-25T07:01:24.695Z ","argsString":"{\n \"resultCode\": \"20000\",\n \"resultDescription\": \"Success\"\n}","message":"[output] [emails.js:61] 2016-10-25T07:01:24.695Z {\n \"resultCode\": \"20000\",\n \"resultDescription\": \"Success\"\n}"} | ||
85 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477385301549,"location":{"filename":"server.js","line":15}},"args":{"0":"Web server listening at: %s","1":"http://localhost:3000"},"contextString":"","argsString":"Web server listening at: http://localhost:3000","message":"Web server listening at: http://localhost:3000"} | ||
86 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477385301553,"location":{"filename":"server.js","line":18}},"args":{"0":"Browse your REST API at %s%s","1":"http://localhost:3000","2":"/explorer"},"contextString":"","argsString":"Browse your REST API at http://localhost:3000/explorer","message":"Browse your REST API at http://localhost:3000/explorer"} | ||
87 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477385310255,"location":{"filename":"emails.js","line":63}},"args":{"0":"lets callback"},"contextString":"","argsString":"lets callback","message":"lets callback"} | ||
88 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["output"],"file":true,"time":1477385310253,"location":{"filename":"emails.js","line":62}},"args":{"0":{"resultCode":"20000","resultDescription":"Success"}},"contextString":"[output] [emails.js:62] 2016-10-25T08:48:30.253Z ","argsString":"{\n \"resultCode\": \"20000\",\n \"resultDescription\": \"Success\"\n}","message":"[output] [emails.js:62] 2016-10-25T08:48:30.253Z {\n \"resultCode\": \"20000\",\n \"resultDescription\": \"Success\"\n}"} | ||
89 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477385310259,"location":{"filename":"emails.js","line":65}},"args":{"0":"finish callback"},"contextString":"","argsString":"finish callback","message":"finish callback"} | ||
90 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477385574820,"location":{"filename":"server.js","line":15}},"args":{"0":"Web server listening at: %s","1":"http://localhost:3000"},"contextString":"","argsString":"Web server listening at: http://localhost:3000","message":"Web server listening at: http://localhost:3000"} | ||
91 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477385574823,"location":{"filename":"server.js","line":18}},"args":{"0":"Browse your REST API at %s%s","1":"http://localhost:3000","2":"/explorer"},"contextString":"","argsString":"Browse your REST API at http://localhost:3000/explorer","message":"Browse your REST API at http://localhost:3000/explorer"} | ||
92 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["output"],"file":true,"time":1477385580052,"location":{"filename":"emails.js","line":62}},"args":{"0":{"resultCode":"20000","resultDescription":"Success"}},"contextString":"[output] [emails.js:62] 2016-10-25T08:53:00.052Z ","argsString":"{\n \"resultCode\": \"20000\",\n \"resultDescription\": \"Success\"\n}","message":"[output] [emails.js:62] 2016-10-25T08:53:00.052Z {\n \"resultCode\": \"20000\",\n \"resultDescription\": \"Success\"\n}"} | ||
93 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477385580054,"location":{"filename":"emails.js","line":63}},"args":{"0":"lets callback"},"contextString":"","argsString":"lets callback","message":"lets callback"} | ||
94 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477385580063,"location":{"filename":"emails.js","line":65}},"args":{"0":"finish callback"},"contextString":"","argsString":"finish callback","message":"finish callback"} | ||
95 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477385611228,"location":{"filename":"server.js","line":15}},"args":{"0":"Web server listening at: %s","1":"http://localhost:3000"},"contextString":"","argsString":"Web server listening at: http://localhost:3000","message":"Web server listening at: http://localhost:3000"} | ||
96 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477385611231,"location":{"filename":"server.js","line":18}},"args":{"0":"Browse your REST API at %s%s","1":"http://localhost:3000","2":"/explorer"},"contextString":"","argsString":"Browse your REST API at http://localhost:3000/explorer","message":"Browse your REST API at http://localhost:3000/explorer"} | ||
97 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["query output"],"file":true,"time":1477385615113,"location":{"filename":"emails.js","line":22}},"args":{"0":[{"id":2,"app_id":1,"email":"deathbill99@gmail.com","created_at":"2016-10-21T10:42:21.000Z","modified_at":null,"deleted_at":null},{"id":3,"app_id":1,"email":"sittisak.kop@gmail.com","created_at":"2016-10-21T10:42:38.000Z","modified_at":null,"deleted_at":null},{"id":5,"app_id":1,"email":"surabillzA@gmail.com","created_at":null,"modified_at":null,"deleted_at":null},{"id":6,"app_id":1,"email":"surabil5lz@gmail.com","created_at":"2016-10-25T09:57:31.000Z","modified_at":"2016-10-25T09:57:24.000Z","deleted_at":null},{"id":7,"app_id":1,"email":"surabillsszA@gmail.com","created_at":"2016-10-25T14:01:24.000Z","modified_at":null,"deleted_at":null},{"id":8,"app_id":1,"email":"surabillsszA@gmail.com","created_at":"2016-10-25T15:48:30.000Z","modified_at":null,"deleted_at":null},{"id":9,"app_id":1,"email":"surabillsszA@gmail.com","created_at":"2016-10-25T15:53:00.000Z","modified_at":null,"deleted_at":null}]},"contextString":"[query output] [emails.js:22] 2016-10-25T08:53:35.113Z ","argsString":"[\n {\n \"id\": 2,\n \"app_id\": 1,\n \"email\": \"deathbill99@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:21.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 3,\n \"app_id\": 1,\n \"email\": \"sittisak.kop@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:38.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 5,\n \"app_id\": 1,\n \"email\": \"surabillzA@gmail.com\",\n \"created_at\": null,\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 6,\n \"app_id\": 1,\n \"email\": \"surabil5lz@gmail.com\",\n \"created_at\": \"2016-10-25T09:57:31.000Z\",\n \"modified_at\": \"2016-10-25T09:57:24.000Z\",\n \"deleted_at\": null\n },\n {\n \"id\": 7,\n \"app_id\": 1,\n \"email\": \"surabillsszA@gmail.com\",\n \"created_at\": \"2016-10-25T14:01:24.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 8,\n \"app_id\": 1,\n \"email\": \"surabillsszA@gmail.com\",\n \"created_at\": \"2016-10-25T15:48:30.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 9,\n \"app_id\": 1,\n \"email\": \"surabillsszA@gmail.com\",\n \"created_at\": \"2016-10-25T15:53:00.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n }\n]","message":"[query output] [emails.js:22] 2016-10-25T08:53:35.113Z [\n {\n \"id\": 2,\n \"app_id\": 1,\n \"email\": \"deathbill99@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:21.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 3,\n \"app_id\": 1,\n \"email\": \"sittisak.kop@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:38.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 5,\n \"app_id\": 1,\n \"email\": \"surabillzA@gmail.com\",\n \"created_at\": null,\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 6,\n \"app_id\": 1,\n \"email\": \"surabil5lz@gmail.com\",\n \"created_at\": \"2016-10-25T09:57:31.000Z\",\n \"modified_at\": \"2016-10-25T09:57:24.000Z\",\n \"deleted_at\": null\n },\n {\n \"id\": 7,\n \"app_id\": 1,\n \"email\": \"surabillsszA@gmail.com\",\n \"created_at\": \"2016-10-25T14:01:24.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 8,\n \"app_id\": 1,\n \"email\": \"surabillsszA@gmail.com\",\n \"created_at\": \"2016-10-25T15:48:30.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 9,\n \"app_id\": 1,\n \"email\": \"surabillsszA@gmail.com\",\n \"created_at\": \"2016-10-25T15:53:00.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n }\n]"} | ||
98 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["output"],"file":true,"time":1477385615116,"location":{"filename":"emails.js","line":30}},"args":{"0":{"resultCode":"20000","resultDescription":"Success","data":{"user_id":[{"id":2,"app_id":1,"email":"deathbill99@gmail.com","created_at":"2016-10-21T10:42:21.000Z","modified_at":null,"deleted_at":null},{"id":3,"app_id":1,"email":"sittisak.kop@gmail.com","created_at":"2016-10-21T10:42:38.000Z","modified_at":null,"deleted_at":null},{"id":5,"app_id":1,"email":"surabillzA@gmail.com","created_at":null,"modified_at":null,"deleted_at":null},{"id":6,"app_id":1,"email":"surabil5lz@gmail.com","created_at":"2016-10-25T09:57:31.000Z","modified_at":"2016-10-25T09:57:24.000Z","deleted_at":null},{"id":7,"app_id":1,"email":"surabillsszA@gmail.com","created_at":"2016-10-25T14:01:24.000Z","modified_at":null,"deleted_at":null},{"id":8,"app_id":1,"email":"surabillsszA@gmail.com","created_at":"2016-10-25T15:48:30.000Z","modified_at":null,"deleted_at":null},{"id":9,"app_id":1,"email":"surabillsszA@gmail.com","created_at":"2016-10-25T15:53:00.000Z","modified_at":null,"deleted_at":null}]}}},"contextString":"[output] [emails.js:30] 2016-10-25T08:53:35.116Z ","argsString":"{\n \"resultCode\": \"20000\",\n \"resultDescription\": \"Success\",\n \"data\": {\n \"user_id\": [\n {\n \"id\": 2,\n \"app_id\": 1,\n \"email\": \"deathbill99@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:21.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 3,\n \"app_id\": 1,\n \"email\": \"sittisak.kop@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:38.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 5,\n \"app_id\": 1,\n \"email\": \"surabillzA@gmail.com\",\n \"created_at\": null,\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 6,\n \"app_id\": 1,\n \"email\": \"surabil5lz@gmail.com\",\n \"created_at\": \"2016-10-25T09:57:31.000Z\",\n \"modified_at\": \"2016-10-25T09:57:24.000Z\",\n \"deleted_at\": null\n },\n {\n \"id\": 7,\n \"app_id\": 1,\n \"email\": \"surabillsszA@gmail.com\",\n \"created_at\": \"2016-10-25T14:01:24.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 8,\n \"app_id\": 1,\n \"email\": \"surabillsszA@gmail.com\",\n \"created_at\": \"2016-10-25T15:48:30.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 9,\n \"app_id\": 1,\n \"email\": \"surabillsszA@gmail.com\",\n \"created_at\": \"2016-10-25T15:53:00.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n }\n ]\n }\n}","message":"[output] [emails.js:30] 2016-10-25T08:53:35.116Z {\n \"resultCode\": \"20000\",\n \"resultDescription\": \"Success\",\n \"data\": {\n \"user_id\": [\n {\n \"id\": 2,\n \"app_id\": 1,\n \"email\": \"deathbill99@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:21.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 3,\n \"app_id\": 1,\n \"email\": \"sittisak.kop@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:38.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 5,\n \"app_id\": 1,\n \"email\": \"surabillzA@gmail.com\",\n \"created_at\": null,\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 6,\n \"app_id\": 1,\n \"email\": \"surabil5lz@gmail.com\",\n \"created_at\": \"2016-10-25T09:57:31.000Z\",\n \"modified_at\": \"2016-10-25T09:57:24.000Z\",\n \"deleted_at\": null\n },\n {\n \"id\": 7,\n \"app_id\": 1,\n \"email\": \"surabillsszA@gmail.com\",\n \"created_at\": \"2016-10-25T14:01:24.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 8,\n \"app_id\": 1,\n \"email\": \"surabillsszA@gmail.com\",\n \"created_at\": \"2016-10-25T15:48:30.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 9,\n \"app_id\": 1,\n \"email\": \"surabillsszA@gmail.com\",\n \"created_at\": \"2016-10-25T15:53:00.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n }\n ]\n }\n}"} | ||
99 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477386000708,"location":{"filename":"server.js","line":16}},"args":{"0":"Web server listening at: %s","1":"http://localhost:3000"},"contextString":"","argsString":"Web server listening at: http://localhost:3000","message":"Web server listening at: http://localhost:3000"} | ||
100 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477386000712,"location":{"filename":"server.js","line":19}},"args":{"0":"Browse your REST API at %s%s","1":"http://localhost:3000","2":"/explorer"},"contextString":"","argsString":"Browse your REST API at http://localhost:3000/explorer","message":"Browse your REST API at http://localhost:3000/explorer"} | ||
101 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["output"],"file":true,"time":1477386007979,"location":{"filename":"emails.js","line":30}},"args":{"0":{"resultCode":"20000","resultDescription":"Success","data":{"user_id":[{"id":2,"app_id":1,"email":"deathbill99@gmail.com","created_at":"2016-10-21T10:42:21.000Z","modified_at":null,"deleted_at":null},{"id":3,"app_id":1,"email":"sittisak.kop@gmail.com","created_at":"2016-10-21T10:42:38.000Z","modified_at":null,"deleted_at":null},{"id":5,"app_id":1,"email":"surabillzA@gmail.com","created_at":null,"modified_at":null,"deleted_at":null},{"id":6,"app_id":1,"email":"surabil5lz@gmail.com","created_at":"2016-10-25T09:57:31.000Z","modified_at":"2016-10-25T09:57:24.000Z","deleted_at":null}]}}},"contextString":"[output] [emails.js:30] 2016-10-25T09:00:07.979Z ","argsString":"{\n \"resultCode\": \"20000\",\n \"resultDescription\": \"Success\",\n \"data\": {\n \"user_id\": [\n {\n \"id\": 2,\n \"app_id\": 1,\n \"email\": \"deathbill99@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:21.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 3,\n \"app_id\": 1,\n \"email\": \"sittisak.kop@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:38.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 5,\n \"app_id\": 1,\n \"email\": \"surabillzA@gmail.com\",\n \"created_at\": null,\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 6,\n \"app_id\": 1,\n \"email\": \"surabil5lz@gmail.com\",\n \"created_at\": \"2016-10-25T09:57:31.000Z\",\n \"modified_at\": \"2016-10-25T09:57:24.000Z\",\n \"deleted_at\": null\n }\n ]\n }\n}","message":"[output] [emails.js:30] 2016-10-25T09:00:07.979Z {\n \"resultCode\": \"20000\",\n \"resultDescription\": \"Success\",\n \"data\": {\n \"user_id\": [\n {\n \"id\": 2,\n \"app_id\": 1,\n \"email\": \"deathbill99@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:21.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 3,\n \"app_id\": 1,\n \"email\": \"sittisak.kop@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:38.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 5,\n \"app_id\": 1,\n \"email\": \"surabillzA@gmail.com\",\n \"created_at\": null,\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 6,\n \"app_id\": 1,\n \"email\": \"surabil5lz@gmail.com\",\n \"created_at\": \"2016-10-25T09:57:31.000Z\",\n \"modified_at\": \"2016-10-25T09:57:24.000Z\",\n \"deleted_at\": null\n }\n ]\n }\n}"} | ||
102 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["query output"],"file":true,"time":1477386007976,"location":{"filename":"emails.js","line":22}},"args":{"0":[{"id":2,"app_id":1,"email":"deathbill99@gmail.com","created_at":"2016-10-21T10:42:21.000Z","modified_at":null,"deleted_at":null},{"id":3,"app_id":1,"email":"sittisak.kop@gmail.com","created_at":"2016-10-21T10:42:38.000Z","modified_at":null,"deleted_at":null},{"id":5,"app_id":1,"email":"surabillzA@gmail.com","created_at":null,"modified_at":null,"deleted_at":null},{"id":6,"app_id":1,"email":"surabil5lz@gmail.com","created_at":"2016-10-25T09:57:31.000Z","modified_at":"2016-10-25T09:57:24.000Z","deleted_at":null}]},"contextString":"[query output] [emails.js:22] 2016-10-25T09:00:07.976Z ","argsString":"[\n {\n \"id\": 2,\n \"app_id\": 1,\n \"email\": \"deathbill99@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:21.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 3,\n \"app_id\": 1,\n \"email\": \"sittisak.kop@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:38.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 5,\n \"app_id\": 1,\n \"email\": \"surabillzA@gmail.com\",\n \"created_at\": null,\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 6,\n \"app_id\": 1,\n \"email\": \"surabil5lz@gmail.com\",\n \"created_at\": \"2016-10-25T09:57:31.000Z\",\n \"modified_at\": \"2016-10-25T09:57:24.000Z\",\n \"deleted_at\": null\n }\n]","message":"[query output] [emails.js:22] 2016-10-25T09:00:07.976Z [\n {\n \"id\": 2,\n \"app_id\": 1,\n \"email\": \"deathbill99@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:21.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 3,\n \"app_id\": 1,\n \"email\": \"sittisak.kop@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:38.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 5,\n \"app_id\": 1,\n \"email\": \"surabillzA@gmail.com\",\n \"created_at\": null,\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 6,\n \"app_id\": 1,\n \"email\": \"surabil5lz@gmail.com\",\n \"created_at\": \"2016-10-25T09:57:31.000Z\",\n \"modified_at\": \"2016-10-25T09:57:24.000Z\",\n \"deleted_at\": null\n }\n]"} | ||
103 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["output"],"file":true,"time":1477386010160,"location":{"filename":"emails.js","line":62}},"args":{"0":{"resultCode":"20000","resultDescription":"Success"}},"contextString":"[output] [emails.js:62] 2016-10-25T09:00:10.160Z ","argsString":"{\n \"resultCode\": \"20000\",\n \"resultDescription\": \"Success\"\n}","message":"[output] [emails.js:62] 2016-10-25T09:00:10.160Z {\n \"resultCode\": \"20000\",\n \"resultDescription\": \"Success\"\n}"} | ||
104 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477386010160,"location":{"filename":"emails.js","line":63}},"args":{"0":"lets callback"},"contextString":"","argsString":"lets callback","message":"lets callback"} | ||
105 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477386010162,"location":{"filename":"emails.js","line":65}},"args":{"0":"finish callback"},"contextString":"","argsString":"finish callback","message":"finish callback"} | ||
106 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477386279488,"location":{"filename":"server.js","line":16}},"args":{"0":"Web server listening at: %s","1":"http://localhost:3000"},"contextString":"","argsString":"Web server listening at: http://localhost:3000","message":"Web server listening at: http://localhost:3000"} | ||
107 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477386279492,"location":{"filename":"server.js","line":19}},"args":{"0":"Browse your REST API at %s%s","1":"http://localhost:3000","2":"/explorer"},"contextString":"","argsString":"Browse your REST API at http://localhost:3000/explorer","message":"Browse your REST API at http://localhost:3000/explorer"} | ||
108 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["query output"],"file":true,"time":1477386299960,"location":{"filename":"emails.js","line":81}},"args":{"0":[{"id":2,"app_id":1,"email":"deathbill99@gmail.com","created_at":"2016-10-21T10:42:21.000Z","modified_at":null,"deleted_at":null},{"id":3,"app_id":1,"email":"sittisak.kop@gmail.com","created_at":"2016-10-21T10:42:38.000Z","modified_at":null,"deleted_at":null},{"id":5,"app_id":1,"email":"surabillzA@gmail.com","created_at":null,"modified_at":null,"deleted_at":null},{"id":6,"app_id":1,"email":"surabil5lz@gmail.com","created_at":"2016-10-25T09:57:31.000Z","modified_at":"2016-10-25T09:57:24.000Z","deleted_at":null},{"id":10,"app_id":1,"email":"surabillsszA@gmail.com","created_at":"2016-10-25T16:00:10.000Z","modified_at":null,"deleted_at":null}]},"contextString":"[query output] [emails.js:81] 2016-10-25T09:04:59.960Z ","argsString":"[\n {\n \"id\": 2,\n \"app_id\": 1,\n \"email\": \"deathbill99@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:21.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 3,\n \"app_id\": 1,\n \"email\": \"sittisak.kop@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:38.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 5,\n \"app_id\": 1,\n \"email\": \"surabillzA@gmail.com\",\n \"created_at\": null,\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 6,\n \"app_id\": 1,\n \"email\": \"surabil5lz@gmail.com\",\n \"created_at\": \"2016-10-25T09:57:31.000Z\",\n \"modified_at\": \"2016-10-25T09:57:24.000Z\",\n \"deleted_at\": null\n },\n {\n \"id\": 10,\n \"app_id\": 1,\n \"email\": \"surabillsszA@gmail.com\",\n \"created_at\": \"2016-10-25T16:00:10.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n }\n]","message":"[query output] [emails.js:81] 2016-10-25T09:04:59.960Z [\n {\n \"id\": 2,\n \"app_id\": 1,\n \"email\": \"deathbill99@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:21.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 3,\n \"app_id\": 1,\n \"email\": \"sittisak.kop@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:38.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 5,\n \"app_id\": 1,\n \"email\": \"surabillzA@gmail.com\",\n \"created_at\": null,\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 6,\n \"app_id\": 1,\n \"email\": \"surabil5lz@gmail.com\",\n \"created_at\": \"2016-10-25T09:57:31.000Z\",\n \"modified_at\": \"2016-10-25T09:57:24.000Z\",\n \"deleted_at\": null\n },\n {\n \"id\": 10,\n \"app_id\": 1,\n \"email\": \"surabillsszA@gmail.com\",\n \"created_at\": \"2016-10-25T16:00:10.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n }\n]"} | ||
109 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["output"],"file":true,"time":1477386299962,"location":{"filename":"emails.js","line":89}},"args":{"0":{"resultCode":"20000","resultDescription":"Success","data":{"user_id":[{"id":2,"app_id":1,"email":"deathbill99@gmail.com","created_at":"2016-10-21T10:42:21.000Z","modified_at":null,"deleted_at":null},{"id":3,"app_id":1,"email":"sittisak.kop@gmail.com","created_at":"2016-10-21T10:42:38.000Z","modified_at":null,"deleted_at":null},{"id":5,"app_id":1,"email":"surabillzA@gmail.com","created_at":null,"modified_at":null,"deleted_at":null},{"id":6,"app_id":1,"email":"surabil5lz@gmail.com","created_at":"2016-10-25T09:57:31.000Z","modified_at":"2016-10-25T09:57:24.000Z","deleted_at":null},{"id":10,"app_id":1,"email":"surabillsszA@gmail.com","created_at":"2016-10-25T16:00:10.000Z","modified_at":null,"deleted_at":null}]}}},"contextString":"[output] [emails.js:89] 2016-10-25T09:04:59.962Z ","argsString":"{\n \"resultCode\": \"20000\",\n \"resultDescription\": \"Success\",\n \"data\": {\n \"user_id\": [\n {\n \"id\": 2,\n \"app_id\": 1,\n \"email\": \"deathbill99@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:21.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 3,\n \"app_id\": 1,\n \"email\": \"sittisak.kop@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:38.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 5,\n \"app_id\": 1,\n \"email\": \"surabillzA@gmail.com\",\n \"created_at\": null,\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 6,\n \"app_id\": 1,\n \"email\": \"surabil5lz@gmail.com\",\n \"created_at\": \"2016-10-25T09:57:31.000Z\",\n \"modified_at\": \"2016-10-25T09:57:24.000Z\",\n \"deleted_at\": null\n },\n {\n \"id\": 10,\n \"app_id\": 1,\n \"email\": \"surabillsszA@gmail.com\",\n \"created_at\": \"2016-10-25T16:00:10.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n }\n ]\n }\n}","message":"[output] [emails.js:89] 2016-10-25T09:04:59.962Z {\n \"resultCode\": \"20000\",\n \"resultDescription\": \"Success\",\n \"data\": {\n \"user_id\": [\n {\n \"id\": 2,\n \"app_id\": 1,\n \"email\": \"deathbill99@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:21.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 3,\n \"app_id\": 1,\n \"email\": \"sittisak.kop@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:38.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 5,\n \"app_id\": 1,\n \"email\": \"surabillzA@gmail.com\",\n \"created_at\": null,\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 6,\n \"app_id\": 1,\n \"email\": \"surabil5lz@gmail.com\",\n \"created_at\": \"2016-10-25T09:57:31.000Z\",\n \"modified_at\": \"2016-10-25T09:57:24.000Z\",\n \"deleted_at\": null\n },\n {\n \"id\": 10,\n \"app_id\": 1,\n \"email\": \"surabillsszA@gmail.com\",\n \"created_at\": \"2016-10-25T16:00:10.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n }\n ]\n }\n}"} | ||
110 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["query output"],"file":true,"time":1477386321522,"location":{"filename":"emails.js","line":22}},"args":{"0":[{"id":2,"app_id":1,"email":"deathbill99@gmail.com","created_at":"2016-10-21T10:42:21.000Z","modified_at":null,"deleted_at":null},{"id":3,"app_id":1,"email":"sittisak.kop@gmail.com","created_at":"2016-10-21T10:42:38.000Z","modified_at":null,"deleted_at":null},{"id":5,"app_id":1,"email":"surabillzA@gmail.com","created_at":null,"modified_at":null,"deleted_at":null},{"id":6,"app_id":1,"email":"surabil5lz@gmail.com","created_at":"2016-10-25T09:57:31.000Z","modified_at":"2016-10-25T09:57:24.000Z","deleted_at":null},{"id":10,"app_id":1,"email":"surabillsszA@gmail.com","created_at":"2016-10-25T16:00:10.000Z","modified_at":null,"deleted_at":null}]},"contextString":"[query output] [emails.js:22] 2016-10-25T09:05:21.522Z ","argsString":"[\n {\n \"id\": 2,\n \"app_id\": 1,\n \"email\": \"deathbill99@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:21.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 3,\n \"app_id\": 1,\n \"email\": \"sittisak.kop@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:38.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 5,\n \"app_id\": 1,\n \"email\": \"surabillzA@gmail.com\",\n \"created_at\": null,\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 6,\n \"app_id\": 1,\n \"email\": \"surabil5lz@gmail.com\",\n \"created_at\": \"2016-10-25T09:57:31.000Z\",\n \"modified_at\": \"2016-10-25T09:57:24.000Z\",\n \"deleted_at\": null\n },\n {\n \"id\": 10,\n \"app_id\": 1,\n \"email\": \"surabillsszA@gmail.com\",\n \"created_at\": \"2016-10-25T16:00:10.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n }\n]","message":"[query output] [emails.js:22] 2016-10-25T09:05:21.522Z [\n {\n \"id\": 2,\n \"app_id\": 1,\n \"email\": \"deathbill99@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:21.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 3,\n \"app_id\": 1,\n \"email\": \"sittisak.kop@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:38.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 5,\n \"app_id\": 1,\n \"email\": \"surabillzA@gmail.com\",\n \"created_at\": null,\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 6,\n \"app_id\": 1,\n \"email\": \"surabil5lz@gmail.com\",\n \"created_at\": \"2016-10-25T09:57:31.000Z\",\n \"modified_at\": \"2016-10-25T09:57:24.000Z\",\n \"deleted_at\": null\n },\n {\n \"id\": 10,\n \"app_id\": 1,\n \"email\": \"surabillsszA@gmail.com\",\n \"created_at\": \"2016-10-25T16:00:10.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n }\n]"} | ||
111 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["output"],"file":true,"time":1477386321537,"location":{"filename":"emails.js","line":30}},"args":{"0":{"resultCode":"20000","resultDescription":"Success","data":{"user_id":[{"id":2,"app_id":1,"email":"deathbill99@gmail.com","created_at":"2016-10-21T10:42:21.000Z","modified_at":null,"deleted_at":null},{"id":3,"app_id":1,"email":"sittisak.kop@gmail.com","created_at":"2016-10-21T10:42:38.000Z","modified_at":null,"deleted_at":null},{"id":5,"app_id":1,"email":"surabillzA@gmail.com","created_at":null,"modified_at":null,"deleted_at":null},{"id":6,"app_id":1,"email":"surabil5lz@gmail.com","created_at":"2016-10-25T09:57:31.000Z","modified_at":"2016-10-25T09:57:24.000Z","deleted_at":null},{"id":10,"app_id":1,"email":"surabillsszA@gmail.com","created_at":"2016-10-25T16:00:10.000Z","modified_at":null,"deleted_at":null}]}}},"contextString":"[output] [emails.js:30] 2016-10-25T09:05:21.537Z ","argsString":"{\n \"resultCode\": \"20000\",\n \"resultDescription\": \"Success\",\n \"data\": {\n \"user_id\": [\n {\n \"id\": 2,\n \"app_id\": 1,\n \"email\": \"deathbill99@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:21.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 3,\n \"app_id\": 1,\n \"email\": \"sittisak.kop@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:38.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 5,\n \"app_id\": 1,\n \"email\": \"surabillzA@gmail.com\",\n \"created_at\": null,\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 6,\n \"app_id\": 1,\n \"email\": \"surabil5lz@gmail.com\",\n \"created_at\": \"2016-10-25T09:57:31.000Z\",\n \"modified_at\": \"2016-10-25T09:57:24.000Z\",\n \"deleted_at\": null\n },\n {\n \"id\": 10,\n \"app_id\": 1,\n \"email\": \"surabillsszA@gmail.com\",\n \"created_at\": \"2016-10-25T16:00:10.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n }\n ]\n }\n}","message":"[output] [emails.js:30] 2016-10-25T09:05:21.537Z {\n \"resultCode\": \"20000\",\n \"resultDescription\": \"Success\",\n \"data\": {\n \"user_id\": [\n {\n \"id\": 2,\n \"app_id\": 1,\n \"email\": \"deathbill99@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:21.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 3,\n \"app_id\": 1,\n \"email\": \"sittisak.kop@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:38.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 5,\n \"app_id\": 1,\n \"email\": \"surabillzA@gmail.com\",\n \"created_at\": null,\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 6,\n \"app_id\": 1,\n \"email\": \"surabil5lz@gmail.com\",\n \"created_at\": \"2016-10-25T09:57:31.000Z\",\n \"modified_at\": \"2016-10-25T09:57:24.000Z\",\n \"deleted_at\": null\n },\n {\n \"id\": 10,\n \"app_id\": 1,\n \"email\": \"surabillsszA@gmail.com\",\n \"created_at\": \"2016-10-25T16:00:10.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n }\n ]\n }\n}"} | ||
112 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477386341976,"location":{"filename":"server.js","line":19}},"args":{"0":"Browse your REST API at %s%s","1":"http://localhost:3000","2":"/explorer"},"contextString":"","argsString":"Browse your REST API at http://localhost:3000/explorer","message":"Browse your REST API at http://localhost:3000/explorer"} | ||
113 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477386341972,"location":{"filename":"server.js","line":16}},"args":{"0":"Web server listening at: %s","1":"http://localhost:3000"},"contextString":"","argsString":"Web server listening at: http://localhost:3000","message":"Web server listening at: http://localhost:3000"} | ||
114 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477386478065,"location":{"filename":"server.js","line":16}},"args":{"0":"Web server listening at: %s","1":"http://localhost:3000"},"contextString":"","argsString":"Web server listening at: http://localhost:3000","message":"Web server listening at: http://localhost:3000"} | ||
115 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477386478068,"location":{"filename":"server.js","line":19}},"args":{"0":"Browse your REST API at %s%s","1":"http://localhost:3000","2":"/explorer"},"contextString":"","argsString":"Browse your REST API at http://localhost:3000/explorer","message":"Browse your REST API at http://localhost:3000/explorer"} | ||
116 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477386490108,"location":{"filename":"emails.js","line":63}},"args":{"0":"lets callback:undefined"},"contextString":"","argsString":"lets callback:undefined","message":"lets callback:undefined"} | ||
117 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["output"],"file":true,"time":1477386490106,"location":{"filename":"emails.js","line":62}},"args":{"0":{"resultCode":"20000","resultDescription":"Success"}},"contextString":"[output] [emails.js:62] 2016-10-25T09:08:10.106Z ","argsString":"{\n \"resultCode\": \"20000\",\n \"resultDescription\": \"Success\"\n}","message":"[output] [emails.js:62] 2016-10-25T09:08:10.106Z {\n \"resultCode\": \"20000\",\n \"resultDescription\": \"Success\"\n}"} | ||
118 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477386490113,"location":{"filename":"emails.js","line":65}},"args":{"0":"finish call back"},"contextString":"","argsString":"finish call back","message":"finish call back"} | ||
119 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477386538546,"location":{"filename":"server.js","line":16}},"args":{"0":"Web server listening at: %s","1":"http://localhost:3000"},"contextString":"","argsString":"Web server listening at: http://localhost:3000","message":"Web server listening at: http://localhost:3000"} | ||
120 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477386538554,"location":{"filename":"server.js","line":19}},"args":{"0":"Browse your REST API at %s%s","1":"http://localhost:3000","2":"/explorer"},"contextString":"","argsString":"Browse your REST API at http://localhost:3000/explorer","message":"Browse your REST API at http://localhost:3000/explorer"} | ||
121 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477386539836,"location":{"filename":"emails.js","line":63}},"args":{},"contextString":"","argsString":"undefined","message":"undefined"} | ||
122 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477386539835,"location":{"filename":"emails.js","line":62}},"args":{"0":{"resultCode":"20000","resultDescription":"Success"}},"contextString":"","argsString":"{\n \"resultCode\": \"20000\",\n \"resultDescription\": \"Success\"\n}","message":"{\n \"resultCode\": \"20000\",\n \"resultDescription\": \"Success\"\n}"} | ||
123 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["output"],"file":true,"time":1477386539837,"location":{"filename":"emails.js","line":65}},"args":{"0":{"resultCode":"20000","resultDescription":"Success"}},"contextString":"[output] [emails.js:65] 2016-10-25T09:08:59.837Z ","argsString":"{\n \"resultCode\": \"20000\",\n \"resultDescription\": \"Success\"\n}","message":"[output] [emails.js:65] 2016-10-25T09:08:59.837Z {\n \"resultCode\": \"20000\",\n \"resultDescription\": \"Success\"\n}"} | ||
124 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477386539837,"location":{"filename":"emails.js","line":64}},"args":{"0":"object"},"contextString":"","argsString":"object","message":"object"} | ||
125 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477386539838,"location":{"filename":"emails.js","line":66}},"args":{"0":"lets callback:undefined"},"contextString":"","argsString":"lets callback:undefined","message":"lets callback:undefined"} | ||
126 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477386539842,"location":{"filename":"emails.js","line":68}},"args":{"0":"finish call back"},"contextString":"","argsString":"finish call back","message":"finish call back"} | ||
127 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477386581625,"location":{"filename":"server.js","line":16}},"args":{"0":"Web server listening at: %s","1":"http://localhost:3000"},"contextString":"","argsString":"Web server listening at: http://localhost:3000","message":"Web server listening at: http://localhost:3000"} | ||
128 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477386581630,"location":{"filename":"server.js","line":19}},"args":{"0":"Browse your REST API at %s%s","1":"http://localhost:3000","2":"/explorer"},"contextString":"","argsString":"Browse your REST API at http://localhost:3000/explorer","message":"Browse your REST API at http://localhost:3000/explorer"} | ||
129 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["output"],"file":true,"time":1477386582710,"location":{"filename":"emails.js","line":64}},"args":{"0":{"resultCode":"20000","resultDescription":"Success"}},"contextString":"[output] [emails.js:64] 2016-10-25T09:09:42.710Z ","argsString":"{\n \"resultCode\": \"20000\",\n \"resultDescription\": \"Success\"\n}","message":"[output] [emails.js:64] 2016-10-25T09:09:42.710Z {\n \"resultCode\": \"20000\",\n \"resultDescription\": \"Success\"\n}"} | ||
130 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477386582708,"location":{"filename":"emails.js","line":62}},"args":{"0":{"resultCode":"20000","resultDescription":"Success"}},"contextString":"","argsString":"{\n \"resultCode\": \"20000\",\n \"resultDescription\": \"Success\"\n}","message":"{\n \"resultCode\": \"20000\",\n \"resultDescription\": \"Success\"\n}"} | ||
131 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477386582710,"location":{"filename":"emails.js","line":63}},"args":{"0":"object"},"contextString":"","argsString":"object","message":"object"} | ||
132 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477386582711,"location":{"filename":"emails.js","line":65}},"args":{"0":"lets callback:object"},"contextString":"","argsString":"lets callback:object","message":"lets callback:object"} | ||
133 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477386582716,"location":{"filename":"emails.js","line":67}},"args":{"0":"finish call back"},"contextString":"","argsString":"finish call back","message":"finish call back"} | ||
134 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477386682178,"location":{"filename":"server.js","line":16}},"args":{"0":"Web server listening at: %s","1":"http://localhost:3000"},"contextString":"","argsString":"Web server listening at: http://localhost:3000","message":"Web server listening at: http://localhost:3000"} | ||
135 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477386682182,"location":{"filename":"server.js","line":19}},"args":{"0":"Browse your REST API at %s%s","1":"http://localhost:3000","2":"/explorer"},"contextString":"","argsString":"Browse your REST API at http://localhost:3000/explorer","message":"Browse your REST API at http://localhost:3000/explorer"} | ||
136 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477386691626,"location":{"filename":"server.js","line":16}},"args":{"0":"Web server listening at: %s","1":"http://localhost:3000"},"contextString":"","argsString":"Web server listening at: http://localhost:3000","message":"Web server listening at: http://localhost:3000"} | ||
137 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477386691630,"location":{"filename":"server.js","line":19}},"args":{"0":"Browse your REST API at %s%s","1":"http://localhost:3000","2":"/explorer"},"contextString":"","argsString":"Browse your REST API at http://localhost:3000/explorer","message":"Browse your REST API at http://localhost:3000/explorer"} | ||
138 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477386693254,"location":{"filename":"emails.js","line":62}},"args":{"0":{"resultCode":"20000","resultDescription":"Success"}},"contextString":"","argsString":"{\n \"resultCode\": \"20000\",\n \"resultDescription\": \"Success\"\n}","message":"{\n \"resultCode\": \"20000\",\n \"resultDescription\": \"Success\"\n}"} | ||
139 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477386693255,"location":{"filename":"emails.js","line":63}},"args":{"0":"object"},"contextString":"","argsString":"object","message":"object"} | ||
140 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["output"],"file":true,"time":1477386693256,"location":{"filename":"emails.js","line":64}},"args":{"0":{"resultCode":"20000","resultDescription":"Success"}},"contextString":"[output] [emails.js:64] 2016-10-25T09:11:33.256Z ","argsString":"{\n \"resultCode\": \"20000\",\n \"resultDescription\": \"Success\"\n}","message":"[output] [emails.js:64] 2016-10-25T09:11:33.256Z {\n \"resultCode\": \"20000\",\n \"resultDescription\": \"Success\"\n}"} | ||
141 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477386693257,"location":{"filename":"emails.js","line":65}},"args":{"0":"lets callback:object"},"contextString":"","argsString":"lets callback:object","message":"lets callback:object"} | ||
142 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477386693261,"location":{"filename":"emails.js","line":66}},"args":{},"contextString":"","argsString":"undefined","message":"undefined"} | ||
143 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477386693262,"location":{"filename":"emails.js","line":67}},"args":{"0":"finish call back"},"contextString":"","argsString":"finish call back","message":"finish call back"} | ||
144 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477386725085,"location":{"filename":"server.js","line":16}},"args":{"0":"Web server listening at: %s","1":"http://localhost:3000"},"contextString":"","argsString":"Web server listening at: http://localhost:3000","message":"Web server listening at: http://localhost:3000"} | ||
145 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477386725089,"location":{"filename":"server.js","line":19}},"args":{"0":"Browse your REST API at %s%s","1":"http://localhost:3000","2":"/explorer"},"contextString":"","argsString":"Browse your REST API at http://localhost:3000/explorer","message":"Browse your REST API at http://localhost:3000/explorer"} | ||
146 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["output"],"file":true,"time":1477386726916,"location":{"filename":"emails.js","line":62}},"args":{"0":{"resultCode":"20000","resultDescription":"Success"}},"contextString":"[output] [emails.js:62] 2016-10-25T09:12:06.916Z ","argsString":"{\n \"resultCode\": \"20000\",\n \"resultDescription\": \"Success\"\n}","message":"[output] [emails.js:62] 2016-10-25T09:12:06.916Z {\n \"resultCode\": \"20000\",\n \"resultDescription\": \"Success\"\n}"} | ||
147 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477387120465,"location":{"filename":"server.js","line":19}},"args":{"0":"Browse your REST API at %s%s","1":"http://localhost:3000","2":"/explorer"},"contextString":"","argsString":"Browse your REST API at http://localhost:3000/explorer","message":"Browse your REST API at http://localhost:3000/explorer"} | ||
148 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477387120462,"location":{"filename":"server.js","line":16}},"args":{"0":"Web server listening at: %s","1":"http://localhost:3000"},"contextString":"","argsString":"Web server listening at: http://localhost:3000","message":"Web server listening at: http://localhost:3000"} | ||
149 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["output"],"file":true,"time":1477387121992,"location":{"filename":"emails.js","line":62}},"args":{"0":{"resultCode":"20000","resultDescription":"Success"}},"contextString":"[output] [emails.js:62] 2016-10-25T09:18:41.992Z ","argsString":"{\n \"resultCode\": \"20000\",\n \"resultDescription\": \"Success\"\n}","message":"[output] [emails.js:62] 2016-10-25T09:18:41.992Z {\n \"resultCode\": \"20000\",\n \"resultDescription\": \"Success\"\n}"} | ||
150 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477387138247,"location":{"filename":"server.js","line":19}},"args":{"0":"Browse your REST API at %s%s","1":"http://localhost:3000","2":"/explorer"},"contextString":"","argsString":"Browse your REST API at http://localhost:3000/explorer","message":"Browse your REST API at http://localhost:3000/explorer"} | ||
151 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477387138244,"location":{"filename":"server.js","line":16}},"args":{"0":"Web server listening at: %s","1":"http://localhost:3000"},"contextString":"","argsString":"Web server listening at: http://localhost:3000","message":"Web server listening at: http://localhost:3000"} | ||
152 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["output"],"file":true,"time":1477387139846,"location":{"filename":"emails.js","line":62}},"args":{"0":{"resultCode":"20000","resultDescription":"Success"}},"contextString":"[output] [emails.js:62] 2016-10-25T09:18:59.846Z ","argsString":"{\n \"resultCode\": \"20000\",\n \"resultDescription\": \"Success\"\n}","message":"[output] [emails.js:62] 2016-10-25T09:18:59.846Z {\n \"resultCode\": \"20000\",\n \"resultDescription\": \"Success\"\n}"} | ||
153 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477387444368,"location":{"filename":"server.js","line":16}},"args":{"0":"Web server listening at: %s","1":"http://localhost:3000"},"contextString":"","argsString":"Web server listening at: http://localhost:3000","message":"Web server listening at: http://localhost:3000"} | ||
154 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477387444371,"location":{"filename":"server.js","line":19}},"args":{"0":"Browse your REST API at %s%s","1":"http://localhost:3000","2":"/explorer"},"contextString":"","argsString":"Browse your REST API at http://localhost:3000/explorer","message":"Browse your REST API at http://localhost:3000/explorer"} | ||
155 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["output"],"file":true,"time":1477387447830,"location":{"filename":"emails.js","line":62}},"args":{"0":{"resultCode":"20000","resultDescription":"Success"}},"contextString":"[output] [emails.js:62] 2016-10-25T09:24:07.830Z ","argsString":"{\n \"resultCode\": \"20000\",\n \"resultDescription\": \"Success\"\n}","message":"[output] [emails.js:62] 2016-10-25T09:24:07.830Z {\n \"resultCode\": \"20000\",\n \"resultDescription\": \"Success\"\n}"} |
@@ -0,0 +1,100 @@ | @@ -0,0 +1,100 @@ | ||
1 | +{"type":"info","show":{"tags":true,"location":false,"time":true,"date":false},"context":{"tags":[{"msg":"Express","colors":"cyan"},{"msg":"127.0.0.1","colors":"red"},{"msg":"GET","colors":"green"},{"msg":"DESKTOP","colors":"grey"}],"file":false,"time":1477456365785,"location":{"filename":"expressLogger.js","line":43}},"args":{"0":"/logs"},"contextString":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T04:32:45.785Z ","argsString":"/logs","message":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T04:32:45.785Z /logs"} | ||
2 | +{"type":"info","show":{"tags":true,"location":false,"time":true,"date":false},"context":{"tags":[{"msg":"Express","colors":"cyan"},{"msg":"127.0.0.1","colors":"red"},{"msg":"GET","colors":"green"},{"msg":"DESKTOP","colors":"grey"}],"file":false,"time":1477456365807,"location":{"filename":"expressLogger.js","line":43}},"args":{"0":"/logs/"},"contextString":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T04:32:45.807Z ","argsString":"/logs/","message":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T04:32:45.807Z /logs/"} | ||
3 | +{"type":"info","show":{"tags":true,"location":false,"time":true,"date":false},"context":{"tags":[{"msg":"Express","colors":"cyan"},{"msg":"127.0.0.1","colors":"red"},{"msg":"GET","colors":"green"},{"msg":"DESKTOP","colors":"grey"}],"file":false,"time":1477456365847,"location":{"filename":"expressLogger.js","line":43}},"args":{"0":"/logs/lib/ng-toggle.css"},"contextString":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T04:32:45.847Z ","argsString":"/logs/lib/ng-toggle.css","message":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T04:32:45.847Z /logs/lib/ng-toggle.css"} | ||
4 | +{"type":"info","show":{"tags":true,"location":false,"time":true,"date":false},"context":{"tags":[{"msg":"Express","colors":"cyan"},{"msg":"127.0.0.1","colors":"red"},{"msg":"GET","colors":"green"},{"msg":"DESKTOP","colors":"grey"}],"file":false,"time":1477456365849,"location":{"filename":"expressLogger.js","line":43}},"args":{"0":"/logs/lib/autocomplete.css"},"contextString":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T04:32:45.849Z ","argsString":"/logs/lib/autocomplete.css","message":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T04:32:45.849Z /logs/lib/autocomplete.css"} | ||
5 | +{"type":"info","show":{"tags":true,"location":false,"time":true,"date":false},"context":{"tags":[{"msg":"Express","colors":"cyan"},{"msg":"127.0.0.1","colors":"red"},{"msg":"GET","colors":"green"},{"msg":"DESKTOP","colors":"grey"}],"file":false,"time":1477456365852,"location":{"filename":"expressLogger.js","line":43}},"args":{"0":"/logs/style.css"},"contextString":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T04:32:45.852Z ","argsString":"/logs/style.css","message":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T04:32:45.852Z /logs/style.css"} | ||
6 | +{"type":"info","show":{"tags":true,"location":false,"time":true,"date":false},"context":{"tags":[{"msg":"Express","colors":"cyan"},{"msg":"127.0.0.1","colors":"red"},{"msg":"GET","colors":"green"},{"msg":"DESKTOP","colors":"grey"}],"file":false,"time":1477456365854,"location":{"filename":"expressLogger.js","line":43}},"args":{"0":"/logs/lib/angular.min.js"},"contextString":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T04:32:45.854Z ","argsString":"/logs/lib/angular.min.js","message":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T04:32:45.854Z /logs/lib/angular.min.js"} | ||
7 | +{"type":"info","show":{"tags":true,"location":false,"time":true,"date":false},"context":{"tags":[{"msg":"Express","colors":"cyan"},{"msg":"127.0.0.1","colors":"red"},{"msg":"GET","colors":"green"},{"msg":"DESKTOP","colors":"grey"}],"file":false,"time":1477456365855,"location":{"filename":"expressLogger.js","line":43}},"args":{"0":"/logs/lib/angular-route.min.js"},"contextString":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T04:32:45.855Z ","argsString":"/logs/lib/angular-route.min.js","message":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T04:32:45.855Z /logs/lib/angular-route.min.js"} | ||
8 | +{"type":"info","show":{"tags":true,"location":false,"time":true,"date":false},"context":{"tags":[{"msg":"Express","colors":"cyan"},{"msg":"127.0.0.1","colors":"red"},{"msg":"GET","colors":"green"},{"msg":"DESKTOP","colors":"grey"}],"file":false,"time":1477456365900,"location":{"filename":"expressLogger.js","line":43}},"args":{"0":"/logs/lib/angular-resource.min.js"},"contextString":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T04:32:45.900Z ","argsString":"/logs/lib/angular-resource.min.js","message":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T04:32:45.900Z /logs/lib/angular-resource.min.js"} | ||
9 | +{"type":"info","show":{"tags":true,"location":false,"time":true,"date":false},"context":{"tags":[{"msg":"Express","colors":"cyan"},{"msg":"127.0.0.1","colors":"red"},{"msg":"GET","colors":"green"},{"msg":"DESKTOP","colors":"grey"}],"file":false,"time":1477456365904,"location":{"filename":"expressLogger.js","line":43}},"args":{"0":"/logs/lib/ng-toggle.js"},"contextString":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T04:32:45.904Z ","argsString":"/logs/lib/ng-toggle.js","message":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T04:32:45.904Z /logs/lib/ng-toggle.js"} | ||
10 | +{"type":"info","show":{"tags":true,"location":false,"time":true,"date":false},"context":{"tags":[{"msg":"Express","colors":"cyan"},{"msg":"127.0.0.1","colors":"red"},{"msg":"GET","colors":"green"},{"msg":"DESKTOP","colors":"grey"}],"file":false,"time":1477456365906,"location":{"filename":"expressLogger.js","line":43}},"args":{"0":"/logs/lib/autocomplete.js"},"contextString":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T04:32:45.906Z ","argsString":"/logs/lib/autocomplete.js","message":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T04:32:45.906Z /logs/lib/autocomplete.js"} | ||
11 | +{"type":"info","show":{"tags":true,"location":false,"time":true,"date":false},"context":{"tags":[{"msg":"Express","colors":"cyan"},{"msg":"127.0.0.1","colors":"red"},{"msg":"GET","colors":"green"},{"msg":"DESKTOP","colors":"grey"}],"file":false,"time":1477456365909,"location":{"filename":"expressLogger.js","line":43}},"args":{"0":"/logs/js/app.js"},"contextString":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T04:32:45.909Z ","argsString":"/logs/js/app.js","message":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T04:32:45.909Z /logs/js/app.js"} | ||
12 | +{"type":"info","show":{"tags":true,"location":false,"time":true,"date":false},"context":{"tags":[{"msg":"Express","colors":"cyan"},{"msg":"127.0.0.1","colors":"red"},{"msg":"GET","colors":"green"},{"msg":"DESKTOP","colors":"grey"}],"file":false,"time":1477456365913,"location":{"filename":"expressLogger.js","line":43}},"args":{"0":"/logs/js/directives/block.js"},"contextString":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T04:32:45.913Z ","argsString":"/logs/js/directives/block.js","message":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T04:32:45.913Z /logs/js/directives/block.js"} | ||
13 | +{"type":"info","show":{"tags":true,"location":false,"time":true,"date":false},"context":{"tags":[{"msg":"Express","colors":"cyan"},{"msg":"127.0.0.1","colors":"red"},{"msg":"GET","colors":"green"},{"msg":"DESKTOP","colors":"grey"}],"file":false,"time":1477456365918,"location":{"filename":"expressLogger.js","line":43}},"args":{"0":"/logs/js/directives/sidebarLoggers.js"},"contextString":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T04:32:45.918Z ","argsString":"/logs/js/directives/sidebarLoggers.js","message":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T04:32:45.918Z /logs/js/directives/sidebarLoggers.js"} | ||
14 | +{"type":"info","show":{"tags":true,"location":false,"time":true,"date":false},"context":{"tags":[{"msg":"Express","colors":"cyan"},{"msg":"127.0.0.1","colors":"red"},{"msg":"GET","colors":"green"},{"msg":"DESKTOP","colors":"grey"}],"file":false,"time":1477456365947,"location":{"filename":"expressLogger.js","line":43}},"args":{"0":"/logs/js/directives/sidebarLogs.js"},"contextString":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T04:32:45.947Z ","argsString":"/logs/js/directives/sidebarLogs.js","message":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T04:32:45.947Z /logs/js/directives/sidebarLogs.js"} | ||
15 | +{"type":"info","show":{"tags":true,"location":false,"time":true,"date":false},"context":{"tags":[{"msg":"Express","colors":"cyan"},{"msg":"127.0.0.1","colors":"red"},{"msg":"GET","colors":"green"},{"msg":"DESKTOP","colors":"grey"}],"file":false,"time":1477456365950,"location":{"filename":"expressLogger.js","line":43}},"args":{"0":"/logs/js/directives/log.js"},"contextString":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T04:32:45.950Z ","argsString":"/logs/js/directives/log.js","message":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T04:32:45.950Z /logs/js/directives/log.js"} | ||
16 | +{"type":"info","show":{"tags":true,"location":false,"time":true,"date":false},"context":{"tags":[{"msg":"Express","colors":"cyan"},{"msg":"127.0.0.1","colors":"red"},{"msg":"GET","colors":"green"},{"msg":"DESKTOP","colors":"grey"}],"file":false,"time":1477456365951,"location":{"filename":"expressLogger.js","line":43}},"args":{"0":"/logs/js/directives/menu.js"},"contextString":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T04:32:45.951Z ","argsString":"/logs/js/directives/menu.js","message":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T04:32:45.951Z /logs/js/directives/menu.js"} | ||
17 | +{"type":"info","show":{"tags":true,"location":false,"time":true,"date":false},"context":{"tags":[{"msg":"Express","colors":"cyan"},{"msg":"127.0.0.1","colors":"red"},{"msg":"GET","colors":"green"},{"msg":"DESKTOP","colors":"grey"}],"file":false,"time":1477456365953,"location":{"filename":"expressLogger.js","line":43}},"args":{"0":"/logs/js/services/scribeAPI.js"},"contextString":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T04:32:45.953Z ","argsString":"/logs/js/services/scribeAPI.js","message":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T04:32:45.953Z /logs/js/services/scribeAPI.js"} | ||
18 | +{"type":"info","show":{"tags":true,"location":false,"time":true,"date":false},"context":{"tags":[{"msg":"Express","colors":"cyan"},{"msg":"127.0.0.1","colors":"red"},{"msg":"GET","colors":"green"},{"msg":"DESKTOP","colors":"grey"}],"file":false,"time":1477456365955,"location":{"filename":"expressLogger.js","line":43}},"args":{"0":"/logs/js/services/logs.js"},"contextString":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T04:32:45.955Z ","argsString":"/logs/js/services/logs.js","message":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T04:32:45.955Z /logs/js/services/logs.js"} | ||
19 | +{"type":"info","show":{"tags":true,"location":false,"time":true,"date":false},"context":{"tags":[{"msg":"Express","colors":"cyan"},{"msg":"127.0.0.1","colors":"red"},{"msg":"GET","colors":"green"},{"msg":"DESKTOP","colors":"grey"}],"file":false,"time":1477456365959,"location":{"filename":"expressLogger.js","line":43}},"args":{"0":"/logs/js/controllers/homeController.js"},"contextString":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T04:32:45.959Z ","argsString":"/logs/js/controllers/homeController.js","message":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T04:32:45.959Z /logs/js/controllers/homeController.js"} | ||
20 | +{"type":"info","show":{"tags":true,"location":false,"time":true,"date":false},"context":{"tags":[{"msg":"Express","colors":"cyan"},{"msg":"127.0.0.1","colors":"red"},{"msg":"GET","colors":"green"},{"msg":"DESKTOP","colors":"grey"}],"file":false,"time":1477456365979,"location":{"filename":"expressLogger.js","line":43}},"args":{"0":"/logs/js/controllers/dateController.js"},"contextString":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T04:32:45.979Z ","argsString":"/logs/js/controllers/dateController.js","message":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T04:32:45.979Z /logs/js/controllers/dateController.js"} | ||
21 | +{"type":"info","show":{"tags":true,"location":false,"time":true,"date":false},"context":{"tags":[{"msg":"Express","colors":"cyan"},{"msg":"127.0.0.1","colors":"red"},{"msg":"GET","colors":"green"},{"msg":"DESKTOP","colors":"grey"}],"file":false,"time":1477456365983,"location":{"filename":"expressLogger.js","line":43}},"args":{"0":"/logs/js/controllers/folderController.js"},"contextString":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T04:32:45.983Z ","argsString":"/logs/js/controllers/folderController.js","message":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T04:32:45.983Z /logs/js/controllers/folderController.js"} | ||
22 | +{"type":"info","show":{"tags":true,"location":false,"time":true,"date":false},"context":{"tags":[{"msg":"Express","colors":"cyan"},{"msg":"127.0.0.1","colors":"red"},{"msg":"GET","colors":"green"},{"msg":"DESKTOP","colors":"grey"}],"file":false,"time":1477456365985,"location":{"filename":"expressLogger.js","line":43}},"args":{"0":"/logs/js/controllers/logsController.js"},"contextString":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T04:32:45.985Z ","argsString":"/logs/js/controllers/logsController.js","message":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T04:32:45.985Z /logs/js/controllers/logsController.js"} | ||
23 | +{"type":"info","show":{"tags":true,"location":false,"time":true,"date":false},"context":{"tags":[{"msg":"Express","colors":"cyan"},{"msg":"127.0.0.1","colors":"red"},{"msg":"GET","colors":"green"},{"msg":"DESKTOP","colors":"grey"}],"file":false,"time":1477456366002,"location":{"filename":"expressLogger.js","line":43}},"args":{"0":"/logs/img/menu.png"},"contextString":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T04:32:46.002Z ","argsString":"/logs/img/menu.png","message":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T04:32:46.002Z /logs/img/menu.png"} | ||
24 | +{"type":"info","show":{"tags":true,"location":false,"time":true,"date":false},"context":{"tags":[{"msg":"Express","colors":"cyan"},{"msg":"127.0.0.1","colors":"red"},{"msg":"GET","colors":"green"},{"msg":"DESKTOP","colors":"grey"}],"file":false,"time":1477456366019,"location":{"filename":"expressLogger.js","line":43}},"args":{"0":"/logs/img/logo.png"},"contextString":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T04:32:46.019Z ","argsString":"/logs/img/logo.png","message":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T04:32:46.019Z /logs/img/logo.png"} | ||
25 | +{"type":"info","show":{"tags":true,"location":false,"time":true,"date":false},"context":{"tags":[{"msg":"Express","colors":"cyan"},{"msg":"127.0.0.1","colors":"red"},{"msg":"GET","colors":"green"},{"msg":"DESKTOP","colors":"grey"}],"file":false,"time":1477456366112,"location":{"filename":"expressLogger.js","line":43}},"args":{"0":"/logs/api"},"contextString":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T04:32:46.112Z ","argsString":"/logs/api","message":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T04:32:46.112Z /logs/api"} | ||
26 | +{"type":"info","show":{"tags":true,"location":false,"time":true,"date":false},"context":{"tags":[{"msg":"Express","colors":"cyan"},{"msg":"127.0.0.1","colors":"red"},{"msg":"GET","colors":"green"},{"msg":"DESKTOP","colors":"grey"}],"file":false,"time":1477456366114,"location":{"filename":"expressLogger.js","line":43}},"args":{"0":"/logs/api/timezoneOffset"},"contextString":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T04:32:46.114Z ","argsString":"/logs/api/timezoneOffset","message":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T04:32:46.114Z /logs/api/timezoneOffset"} | ||
27 | +{"type":"info","show":{"tags":true,"location":false,"time":true,"date":false},"context":{"tags":[{"msg":"Express","colors":"cyan"},{"msg":"127.0.0.1","colors":"red"},{"msg":"GET","colors":"green"},{"msg":"DESKTOP","colors":"grey"}],"file":false,"time":1477456366123,"location":{"filename":"expressLogger.js","line":43}},"args":{"0":"/logs/partials/folder.html"},"contextString":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T04:32:46.123Z ","argsString":"/logs/partials/folder.html","message":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T04:32:46.123Z /logs/partials/folder.html"} | ||
28 | +{"type":"info","show":{"tags":true,"location":false,"time":true,"date":false},"context":{"tags":[{"msg":"Express","colors":"cyan"},{"msg":"127.0.0.1","colors":"red"},{"msg":"GET","colors":"green"},{"msg":"DESKTOP","colors":"grey"}],"file":false,"time":1477456366136,"location":{"filename":"expressLogger.js","line":43}},"args":{"0":"/logs/api/log?path=logs%2Fhistory.json"},"contextString":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T04:32:46.136Z ","argsString":"/logs/api/log?path=logs%2Fhistory.json","message":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T04:32:46.136Z /logs/api/log?path=logs%2Fhistory.json"} | ||
29 | +{"type":"info","show":{"tags":true,"location":false,"time":true,"date":false},"context":{"tags":[{"msg":"Express","colors":"cyan"},{"msg":"127.0.0.1","colors":"red"},{"msg":"GET","colors":"green"},{"msg":"DESKTOP","colors":"grey"}],"file":false,"time":1477456366151,"location":{"filename":"expressLogger.js","line":43}},"args":{"0":"/logs/partials/elements/sidebarLoggers.html"},"contextString":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T04:32:46.151Z ","argsString":"/logs/partials/elements/sidebarLoggers.html","message":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T04:32:46.151Z /logs/partials/elements/sidebarLoggers.html"} | ||
30 | +{"type":"info","show":{"tags":true,"location":false,"time":true,"date":false},"context":{"tags":[{"msg":"Express","colors":"cyan"},{"msg":"127.0.0.1","colors":"red"},{"msg":"GET","colors":"green"},{"msg":"DESKTOP","colors":"grey"}],"file":false,"time":1477456366153,"location":{"filename":"expressLogger.js","line":43}},"args":{"0":"/logs/partials/elements/blocks.html"},"contextString":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T04:32:46.153Z ","argsString":"/logs/partials/elements/blocks.html","message":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T04:32:46.153Z /logs/partials/elements/blocks.html"} | ||
31 | +{"type":"info","show":{"tags":true,"location":false,"time":true,"date":false},"context":{"tags":[{"msg":"Express","colors":"cyan"},{"msg":"127.0.0.1","colors":"red"},{"msg":"GET","colors":"green"},{"msg":"DESKTOP","colors":"grey"}],"file":false,"time":1477456367935,"location":{"filename":"expressLogger.js","line":43}},"args":{"0":"/logs/api/dateExplorer?from=1477456367933&length=10&logFolder=logs"},"contextString":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T04:32:47.935Z ","argsString":"/logs/api/dateExplorer?from=1477456367933&length=10&logFolder=logs","message":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T04:32:47.935Z /logs/api/dateExplorer?from=1477456367933&length=10&logFolder=logs"} | ||
32 | +{"type":"info","show":{"tags":true,"location":false,"time":true,"date":false},"context":{"tags":[{"msg":"Express","colors":"cyan"},{"msg":"127.0.0.1","colors":"red"},{"msg":"GET","colors":"green"},{"msg":"DESKTOP","colors":"grey"}],"file":false,"time":1477456367939,"location":{"filename":"expressLogger.js","line":43}},"args":{"0":"/logs/partials/dates.html"},"contextString":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T04:32:47.939Z ","argsString":"/logs/partials/dates.html","message":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T04:32:47.939Z /logs/partials/dates.html"} | ||
33 | +{"type":"info","show":{"tags":true,"location":false,"time":true,"date":false},"context":{"tags":[{"msg":"Express","colors":"cyan"},{"msg":"127.0.0.1","colors":"red"},{"msg":"GET","colors":"green"},{"msg":"DESKTOP","colors":"grey"}],"file":false,"time":1477456367975,"location":{"filename":"expressLogger.js","line":43}},"args":{"0":"/logs/fonts/fontello.woff2"},"contextString":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T04:32:47.975Z ","argsString":"/logs/fonts/fontello.woff2","message":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T04:32:47.975Z /logs/fonts/fontello.woff2"} | ||
34 | +{"type":"info","show":{"tags":true,"location":false,"time":true,"date":false},"context":{"tags":[{"msg":"Express","colors":"cyan"},{"msg":"127.0.0.1","colors":"red"},{"msg":"GET","colors":"green"},{"msg":"DESKTOP","colors":"grey"}],"file":false,"time":1477456367988,"location":{"filename":"expressLogger.js","line":43}},"args":{"0":"/logs/fonts/fontello.woff"},"contextString":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T04:32:47.988Z ","argsString":"/logs/fonts/fontello.woff","message":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T04:32:47.988Z /logs/fonts/fontello.woff"} | ||
35 | +{"type":"info","show":{"tags":true,"location":false,"time":true,"date":false},"context":{"tags":[{"msg":"Express","colors":"cyan"},{"msg":"127.0.0.1","colors":"red"},{"msg":"GET","colors":"green"},{"msg":"DESKTOP","colors":"grey"}],"file":false,"time":1477456369101,"location":{"filename":"expressLogger.js","line":43}},"args":{"0":"/logs/partials/logs.html"},"contextString":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T04:32:49.101Z ","argsString":"/logs/partials/logs.html","message":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T04:32:49.101Z /logs/partials/logs.html"} | ||
36 | +{"type":"info","show":{"tags":true,"location":false,"time":true,"date":false},"context":{"tags":[{"msg":"Express","colors":"cyan"},{"msg":"127.0.0.1","colors":"red"},{"msg":"GET","colors":"green"},{"msg":"DESKTOP","colors":"grey"}],"file":false,"time":1477456369120,"location":{"filename":"expressLogger.js","line":43}},"args":{"0":"/logs/partials/elements/sidebarLogs.html"},"contextString":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T04:32:49.120Z ","argsString":"/logs/partials/elements/sidebarLogs.html","message":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T04:32:49.120Z /logs/partials/elements/sidebarLogs.html"} | ||
37 | +{"type":"info","show":{"tags":true,"location":false,"time":true,"date":false},"context":{"tags":[{"msg":"Express","colors":"cyan"},{"msg":"127.0.0.1","colors":"red"},{"msg":"GET","colors":"green"},{"msg":"DESKTOP","colors":"grey"}],"file":false,"time":1477456369125,"location":{"filename":"expressLogger.js","line":43}},"args":{"0":"/logs/partials/elements/menu.html"},"contextString":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T04:32:49.125Z ","argsString":"/logs/partials/elements/menu.html","message":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T04:32:49.125Z /logs/partials/elements/menu.html"} | ||
38 | +{"type":"info","show":{"tags":true,"location":false,"time":true,"date":false},"context":{"tags":[{"msg":"Express","colors":"cyan"},{"msg":"127.0.0.1","colors":"red"},{"msg":"GET","colors":"green"},{"msg":"DESKTOP","colors":"grey"}],"file":false,"time":1477456369129,"location":{"filename":"expressLogger.js","line":43}},"args":{"0":"/logs/partials/elements/log.html"},"contextString":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T04:32:49.129Z ","argsString":"/logs/partials/elements/log.html","message":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T04:32:49.129Z /logs/partials/elements/log.html"} | ||
39 | +{"type":"info","show":{"tags":true,"location":false,"time":true,"date":false},"context":{"tags":[{"msg":"Express","colors":"cyan"},{"msg":"127.0.0.1","colors":"red"},{"msg":"GET","colors":"green"},{"msg":"DESKTOP","colors":"grey"}],"file":false,"time":1477456369131,"location":{"filename":"expressLogger.js","line":43}},"args":{"0":"/logs/api/log?path=logs%5C2016%5COct%5C26_oct_16.log.json"},"contextString":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T04:32:49.131Z ","argsString":"/logs/api/log?path=logs%5C2016%5COct%5C26_oct_16.log.json","message":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T04:32:49.131Z /logs/api/log?path=logs%5C2016%5COct%5C26_oct_16.log.json"} | ||
40 | +{"type":"info","show":{"tags":true,"location":false,"time":true,"date":false},"context":{"tags":[{"msg":"Express","colors":"cyan"},{"msg":"127.0.0.1","colors":"red"},{"msg":"GET","colors":"green"},{"msg":"DESKTOP","colors":"grey"}],"file":false,"time":1477456372646,"location":{"filename":"expressLogger.js","line":43}},"args":{"0":"/logs/api/log?path=logs%5C2016%5COct%5C26_oct_16.log.json"},"contextString":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T04:32:52.646Z ","argsString":"/logs/api/log?path=logs%5C2016%5COct%5C26_oct_16.log.json","message":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T04:32:52.646Z /logs/api/log?path=logs%5C2016%5COct%5C26_oct_16.log.json"} | ||
41 | +{"type":"info","show":{"tags":true,"location":false,"time":true,"date":false},"context":{"tags":[{"msg":"Express","colors":"cyan"},{"msg":"127.0.0.1","colors":"red"},{"msg":"GET","colors":"green"},{"msg":"DESKTOP","colors":"grey"}],"file":false,"time":1477456372667,"location":{"filename":"expressLogger.js","line":43}},"args":{"0":"/logs/api/log?path=logs%5C2016%5COct%5C26_oct_16.info.json"},"contextString":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T04:32:52.667Z ","argsString":"/logs/api/log?path=logs%5C2016%5COct%5C26_oct_16.info.json","message":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T04:32:52.667Z /logs/api/log?path=logs%5C2016%5COct%5C26_oct_16.info.json"} | ||
42 | +{"type":"info","show":{"tags":true,"location":false,"time":true,"date":false},"context":{"tags":[{"msg":"Express","colors":"cyan"},{"msg":"127.0.0.1","colors":"red"},{"msg":"GET","colors":"green"},{"msg":"DESKTOP","colors":"grey"}],"file":false,"time":1477456374082,"location":{"filename":"expressLogger.js","line":43}},"args":{"0":"/logs/api/log?path=logs%5C2016%5COct%5C26_oct_16.info.json"},"contextString":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T04:32:54.082Z ","argsString":"/logs/api/log?path=logs%5C2016%5COct%5C26_oct_16.info.json","message":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T04:32:54.082Z /logs/api/log?path=logs%5C2016%5COct%5C26_oct_16.info.json"} | ||
43 | +{"type":"info","show":{"tags":true,"location":false,"time":true,"date":false},"context":{"tags":[{"msg":"Express","colors":"cyan"},{"msg":"127.0.0.1","colors":"red"},{"msg":"GET","colors":"green"},{"msg":"DESKTOP","colors":"grey"}],"file":false,"time":1477456375455,"location":{"filename":"expressLogger.js","line":43}},"args":{"0":"/logs/api/log?path=logs%5C2016%5COct%5C26_oct_16.log.json"},"contextString":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T04:32:55.455Z ","argsString":"/logs/api/log?path=logs%5C2016%5COct%5C26_oct_16.log.json","message":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T04:32:55.455Z /logs/api/log?path=logs%5C2016%5COct%5C26_oct_16.log.json"} | ||
44 | +{"type":"info","show":{"tags":true,"location":false,"time":true,"date":false},"context":{"tags":[{"msg":"Express","colors":"cyan"},{"msg":"127.0.0.1","colors":"red"},{"msg":"GET","colors":"green"},{"msg":"DESKTOP","colors":"grey"}],"file":false,"time":1477456375457,"location":{"filename":"expressLogger.js","line":43}},"args":{"0":"/logs/api/log?path=logs%5C2016%5COct%5C26_oct_16.info.json"},"contextString":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T04:32:55.457Z ","argsString":"/logs/api/log?path=logs%5C2016%5COct%5C26_oct_16.info.json","message":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T04:32:55.457Z /logs/api/log?path=logs%5C2016%5COct%5C26_oct_16.info.json"} | ||
45 | +{"type":"info","show":{"tags":true,"location":false,"time":true,"date":false},"context":{"tags":[{"msg":"Express","colors":"cyan"},{"msg":"127.0.0.1","colors":"red"},{"msg":"GET","colors":"green"},{"msg":"DESKTOP","colors":"grey"}],"file":false,"time":1477456376175,"location":{"filename":"expressLogger.js","line":43}},"args":{"0":"/logs/api/log?path=logs%5C2016%5COct%5C26_oct_16.log.json"},"contextString":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T04:32:56.175Z ","argsString":"/logs/api/log?path=logs%5C2016%5COct%5C26_oct_16.log.json","message":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T04:32:56.175Z /logs/api/log?path=logs%5C2016%5COct%5C26_oct_16.log.json"} | ||
46 | +{"type":"info","show":{"tags":true,"location":false,"time":true,"date":false},"context":{"tags":[{"msg":"Express","colors":"cyan"},{"msg":"127.0.0.1","colors":"red"},{"msg":"GET","colors":"green"},{"msg":"DESKTOP","colors":"grey"}],"file":false,"time":1477456382486,"location":{"filename":"expressLogger.js","line":43}},"args":{"0":"/logs/api/dateExplorer?from=1477456382453&length=10&logFolder=logs"},"contextString":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T04:33:02.486Z ","argsString":"/logs/api/dateExplorer?from=1477456382453&length=10&logFolder=logs","message":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T04:33:02.486Z /logs/api/dateExplorer?from=1477456382453&length=10&logFolder=logs"} | ||
47 | +{"type":"info","show":{"tags":true,"location":false,"time":true,"date":false},"context":{"tags":[{"msg":"Express","colors":"cyan"},{"msg":"127.0.0.1","colors":"red"},{"msg":"GET","colors":"green"},{"msg":"DESKTOP","colors":"grey"}],"file":false,"time":1477456383392,"location":{"filename":"expressLogger.js","line":43}},"args":{"0":"/logs/api/log?path=logs%5C2016%5COct%5C25_oct_16.log.json"},"contextString":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T04:33:03.392Z ","argsString":"/logs/api/log?path=logs%5C2016%5COct%5C25_oct_16.log.json","message":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T04:33:03.392Z /logs/api/log?path=logs%5C2016%5COct%5C25_oct_16.log.json"} | ||
48 | +{"type":"info","show":{"tags":true,"location":false,"time":true,"date":false},"context":{"tags":[{"msg":"Express","colors":"cyan"},{"msg":"127.0.0.1","colors":"red"},{"msg":"POST","colors":"green"},{"msg":"DESKTOP","colors":"grey"}],"file":false,"time":1477456421767,"location":{"filename":"expressLogger.js","line":43}},"args":{"0":"/api/email"},"contextString":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[POST]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T04:33:41.767Z ","argsString":"/api/email","message":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[POST]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T04:33:41.767Z /api/email"} | ||
49 | +{"type":"info","show":{"tags":true,"location":false,"time":true,"date":false},"context":{"tags":[{"msg":"Express","colors":"cyan"},{"msg":"127.0.0.1","colors":"red"},{"msg":"POST","colors":"green"},{"msg":"DESKTOP","colors":"grey"}],"file":false,"time":1477457032518,"location":{"filename":"expressLogger.js","line":43}},"args":{"0":"/api/TP"},"contextString":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[POST]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T04:43:52.518Z ","argsString":"/api/TP","message":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[POST]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T04:43:52.518Z /api/TP"} | ||
50 | +{"type":"info","show":{"tags":true,"location":false,"time":true,"date":false},"context":{"tags":[{"msg":"Express","colors":"cyan"},{"msg":"127.0.0.1","colors":"red"},{"msg":"POST","colors":"green"},{"msg":"DESKTOP","colors":"grey"}],"file":false,"time":1477457063442,"location":{"filename":"expressLogger.js","line":43}},"args":{"0":"/api/TP"},"contextString":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[POST]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T04:44:23.442Z ","argsString":"/api/TP","message":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[POST]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T04:44:23.442Z /api/TP"} | ||
51 | +{"type":"info","show":{"tags":true,"location":false,"time":true,"date":false},"context":{"tags":[{"msg":"Express","colors":"cyan"},{"msg":"127.0.0.1","colors":"red"},{"msg":"POST","colors":"green"},{"msg":"DESKTOP","colors":"grey"}],"file":false,"time":1477457894883,"location":{"filename":"expressLogger.js","line":43}},"args":{"0":"/api/email"},"contextString":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[POST]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T04:58:14.883Z ","argsString":"/api/email","message":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[POST]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T04:58:14.883Z /api/email"} | ||
52 | +{"type":"info","show":{"tags":true,"location":false,"time":true,"date":false},"context":{"tags":[{"msg":"Express","colors":"cyan"},{"msg":"127.0.0.1","colors":"red"},{"msg":"POST","colors":"green"},{"msg":"DESKTOP","colors":"grey"}],"file":false,"time":1477457900960,"location":{"filename":"expressLogger.js","line":43}},"args":{"0":"/api/email"},"contextString":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[POST]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T04:58:20.960Z ","argsString":"/api/email","message":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[POST]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T04:58:20.960Z /api/email"} | ||
53 | +{"type":"info","show":{"tags":true,"location":false,"time":true,"date":false},"context":{"tags":[{"msg":"Express","colors":"cyan"},{"msg":"127.0.0.1","colors":"red"},{"msg":"PUT","colors":"green"},{"msg":"DESKTOP","colors":"grey"}],"file":false,"time":1477458056317,"location":{"filename":"expressLogger.js","line":43}},"args":{"0":"/api/email"},"contextString":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[PUT]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T05:00:56.317Z ","argsString":"/api/email","message":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[PUT]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T05:00:56.317Z /api/email"} | ||
54 | +{"type":"info","show":{"tags":true,"location":false,"time":true,"date":false},"context":{"tags":[{"msg":"Express","colors":"cyan"},{"msg":"127.0.0.1","colors":"red"},{"msg":"PUT","colors":"green"},{"msg":"DESKTOP","colors":"grey"}],"file":false,"time":1477458075098,"location":{"filename":"expressLogger.js","line":43}},"args":{"0":"/api/email/updateEmail"},"contextString":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[PUT]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T05:01:15.098Z ","argsString":"/api/email/updateEmail","message":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[PUT]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T05:01:15.098Z /api/email/updateEmail"} | ||
55 | +{"type":"info","show":{"tags":true,"location":false,"time":true,"date":false},"context":{"tags":[{"msg":"Express","colors":"cyan"},{"msg":"127.0.0.1","colors":"red"},{"msg":"PUT","colors":"green"},{"msg":"DESKTOP","colors":"grey"}],"file":false,"time":1477458112335,"location":{"filename":"expressLogger.js","line":43}},"args":{"0":"/api/email/updateEmail"},"contextString":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[PUT]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T05:01:52.335Z ","argsString":"/api/email/updateEmail","message":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[PUT]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T05:01:52.335Z /api/email/updateEmail"} | ||
56 | +{"type":"info","show":{"tags":true,"location":false,"time":true,"date":false},"context":{"tags":[{"msg":"Express","colors":"cyan"},{"msg":"127.0.0.1","colors":"red"},{"msg":"PUT","colors":"green"},{"msg":"DESKTOP","colors":"grey"}],"file":false,"time":1477458135775,"location":{"filename":"expressLogger.js","line":43}},"args":{"0":"/api/email/updateEmail"},"contextString":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[PUT]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T05:02:15.775Z ","argsString":"/api/email/updateEmail","message":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[PUT]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T05:02:15.775Z /api/email/updateEmail"} | ||
57 | +{"type":"info","show":{"tags":true,"location":false,"time":true,"date":false},"context":{"tags":[{"msg":"Express","colors":"cyan"},{"msg":"127.0.0.1","colors":"red"},{"msg":"PUT","colors":"green"},{"msg":"DESKTOP","colors":"grey"}],"file":false,"time":1477458193741,"location":{"filename":"expressLogger.js","line":43}},"args":{"0":"/api/email/updateEmail"},"contextString":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[PUT]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T05:03:13.741Z ","argsString":"/api/email/updateEmail","message":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[PUT]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T05:03:13.741Z /api/email/updateEmail"} | ||
58 | +{"type":"info","show":{"tags":true,"location":false,"time":true,"date":false},"context":{"tags":[{"msg":"Express","colors":"cyan"},{"msg":"127.0.0.1","colors":"red"},{"msg":"PUT","colors":"green"},{"msg":"DESKTOP","colors":"grey"}],"file":false,"time":1477458244574,"location":{"filename":"expressLogger.js","line":43}},"args":{"0":"/api/email/deleteEmail"},"contextString":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[PUT]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T05:04:04.574Z ","argsString":"/api/email/deleteEmail","message":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[PUT]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T05:04:04.574Z /api/email/deleteEmail"} | ||
59 | +{"type":"info","show":{"tags":true,"location":false,"time":true,"date":false},"context":{"tags":[{"msg":"Express","colors":"cyan"},{"msg":"127.0.0.1","colors":"red"},{"msg":"GET","colors":"green"},{"msg":"DESKTOP","colors":"grey"}],"file":false,"time":1477465678956,"location":{"filename":"expressLogger.js","line":43}},"args":{"0":"/logs"},"contextString":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T07:07:58.956Z ","argsString":"/logs","message":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T07:07:58.956Z /logs"} | ||
60 | +{"type":"info","show":{"tags":true,"location":false,"time":true,"date":false},"context":{"tags":[{"msg":"Express","colors":"cyan"},{"msg":"127.0.0.1","colors":"red"},{"msg":"GET","colors":"green"},{"msg":"DESKTOP","colors":"grey"}],"file":false,"time":1477465678978,"location":{"filename":"expressLogger.js","line":43}},"args":{"0":"/logs/"},"contextString":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T07:07:58.978Z ","argsString":"/logs/","message":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T07:07:58.978Z /logs/"} | ||
61 | +{"type":"info","show":{"tags":true,"location":false,"time":true,"date":false},"context":{"tags":[{"msg":"Express","colors":"cyan"},{"msg":"127.0.0.1","colors":"red"},{"msg":"GET","colors":"green"},{"msg":"DESKTOP","colors":"grey"}],"file":false,"time":1477465679004,"location":{"filename":"expressLogger.js","line":43}},"args":{"0":"/logs/lib/ng-toggle.css"},"contextString":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T07:07:59.004Z ","argsString":"/logs/lib/ng-toggle.css","message":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T07:07:59.004Z /logs/lib/ng-toggle.css"} | ||
62 | +{"type":"info","show":{"tags":true,"location":false,"time":true,"date":false},"context":{"tags":[{"msg":"Express","colors":"cyan"},{"msg":"127.0.0.1","colors":"red"},{"msg":"GET","colors":"green"},{"msg":"DESKTOP","colors":"grey"}],"file":false,"time":1477465679011,"location":{"filename":"expressLogger.js","line":43}},"args":{"0":"/logs/lib/autocomplete.css"},"contextString":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T07:07:59.011Z ","argsString":"/logs/lib/autocomplete.css","message":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T07:07:59.011Z /logs/lib/autocomplete.css"} | ||
63 | +{"type":"info","show":{"tags":true,"location":false,"time":true,"date":false},"context":{"tags":[{"msg":"Express","colors":"cyan"},{"msg":"127.0.0.1","colors":"red"},{"msg":"GET","colors":"green"},{"msg":"DESKTOP","colors":"grey"}],"file":false,"time":1477465679017,"location":{"filename":"expressLogger.js","line":43}},"args":{"0":"/logs/style.css"},"contextString":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T07:07:59.017Z ","argsString":"/logs/style.css","message":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T07:07:59.017Z /logs/style.css"} | ||
64 | +{"type":"info","show":{"tags":true,"location":false,"time":true,"date":false},"context":{"tags":[{"msg":"Express","colors":"cyan"},{"msg":"127.0.0.1","colors":"red"},{"msg":"GET","colors":"green"},{"msg":"DESKTOP","colors":"grey"}],"file":false,"time":1477465679019,"location":{"filename":"expressLogger.js","line":43}},"args":{"0":"/logs/lib/angular.min.js"},"contextString":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T07:07:59.019Z ","argsString":"/logs/lib/angular.min.js","message":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T07:07:59.019Z /logs/lib/angular.min.js"} | ||
65 | +{"type":"info","show":{"tags":true,"location":false,"time":true,"date":false},"context":{"tags":[{"msg":"Express","colors":"cyan"},{"msg":"127.0.0.1","colors":"red"},{"msg":"GET","colors":"green"},{"msg":"DESKTOP","colors":"grey"}],"file":false,"time":1477465679029,"location":{"filename":"expressLogger.js","line":43}},"args":{"0":"/logs/lib/angular-route.min.js"},"contextString":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T07:07:59.029Z ","argsString":"/logs/lib/angular-route.min.js","message":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T07:07:59.029Z /logs/lib/angular-route.min.js"} | ||
66 | +{"type":"info","show":{"tags":true,"location":false,"time":true,"date":false},"context":{"tags":[{"msg":"Express","colors":"cyan"},{"msg":"127.0.0.1","colors":"red"},{"msg":"GET","colors":"green"},{"msg":"DESKTOP","colors":"grey"}],"file":false,"time":1477465679044,"location":{"filename":"expressLogger.js","line":43}},"args":{"0":"/logs/lib/angular-resource.min.js"},"contextString":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T07:07:59.044Z ","argsString":"/logs/lib/angular-resource.min.js","message":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T07:07:59.044Z /logs/lib/angular-resource.min.js"} | ||
67 | +{"type":"info","show":{"tags":true,"location":false,"time":true,"date":false},"context":{"tags":[{"msg":"Express","colors":"cyan"},{"msg":"127.0.0.1","colors":"red"},{"msg":"GET","colors":"green"},{"msg":"DESKTOP","colors":"grey"}],"file":false,"time":1477465679049,"location":{"filename":"expressLogger.js","line":43}},"args":{"0":"/logs/lib/ng-toggle.js"},"contextString":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T07:07:59.049Z ","argsString":"/logs/lib/ng-toggle.js","message":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T07:07:59.049Z /logs/lib/ng-toggle.js"} | ||
68 | +{"type":"info","show":{"tags":true,"location":false,"time":true,"date":false},"context":{"tags":[{"msg":"Express","colors":"cyan"},{"msg":"127.0.0.1","colors":"red"},{"msg":"GET","colors":"green"},{"msg":"DESKTOP","colors":"grey"}],"file":false,"time":1477465679058,"location":{"filename":"expressLogger.js","line":43}},"args":{"0":"/logs/lib/autocomplete.js"},"contextString":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T07:07:59.058Z ","argsString":"/logs/lib/autocomplete.js","message":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T07:07:59.058Z /logs/lib/autocomplete.js"} | ||
69 | +{"type":"info","show":{"tags":true,"location":false,"time":true,"date":false},"context":{"tags":[{"msg":"Express","colors":"cyan"},{"msg":"127.0.0.1","colors":"red"},{"msg":"GET","colors":"green"},{"msg":"DESKTOP","colors":"grey"}],"file":false,"time":1477465679061,"location":{"filename":"expressLogger.js","line":43}},"args":{"0":"/logs/js/app.js"},"contextString":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T07:07:59.061Z ","argsString":"/logs/js/app.js","message":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T07:07:59.061Z /logs/js/app.js"} | ||
70 | +{"type":"info","show":{"tags":true,"location":false,"time":true,"date":false},"context":{"tags":[{"msg":"Express","colors":"cyan"},{"msg":"127.0.0.1","colors":"red"},{"msg":"GET","colors":"green"},{"msg":"DESKTOP","colors":"grey"}],"file":false,"time":1477465679070,"location":{"filename":"expressLogger.js","line":43}},"args":{"0":"/logs/js/directives/block.js"},"contextString":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T07:07:59.070Z ","argsString":"/logs/js/directives/block.js","message":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T07:07:59.070Z /logs/js/directives/block.js"} | ||
71 | +{"type":"info","show":{"tags":true,"location":false,"time":true,"date":false},"context":{"tags":[{"msg":"Express","colors":"cyan"},{"msg":"127.0.0.1","colors":"red"},{"msg":"GET","colors":"green"},{"msg":"DESKTOP","colors":"grey"}],"file":false,"time":1477465679071,"location":{"filename":"expressLogger.js","line":43}},"args":{"0":"/logs/js/directives/sidebarLoggers.js"},"contextString":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T07:07:59.071Z ","argsString":"/logs/js/directives/sidebarLoggers.js","message":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T07:07:59.071Z /logs/js/directives/sidebarLoggers.js"} | ||
72 | +{"type":"info","show":{"tags":true,"location":false,"time":true,"date":false},"context":{"tags":[{"msg":"Express","colors":"cyan"},{"msg":"127.0.0.1","colors":"red"},{"msg":"GET","colors":"green"},{"msg":"DESKTOP","colors":"grey"}],"file":false,"time":1477465679083,"location":{"filename":"expressLogger.js","line":43}},"args":{"0":"/logs/js/directives/sidebarLogs.js"},"contextString":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T07:07:59.083Z ","argsString":"/logs/js/directives/sidebarLogs.js","message":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T07:07:59.083Z /logs/js/directives/sidebarLogs.js"} | ||
73 | +{"type":"info","show":{"tags":true,"location":false,"time":true,"date":false},"context":{"tags":[{"msg":"Express","colors":"cyan"},{"msg":"127.0.0.1","colors":"red"},{"msg":"GET","colors":"green"},{"msg":"DESKTOP","colors":"grey"}],"file":false,"time":1477465679086,"location":{"filename":"expressLogger.js","line":43}},"args":{"0":"/logs/js/directives/log.js"},"contextString":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T07:07:59.086Z ","argsString":"/logs/js/directives/log.js","message":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T07:07:59.086Z /logs/js/directives/log.js"} | ||
74 | +{"type":"info","show":{"tags":true,"location":false,"time":true,"date":false},"context":{"tags":[{"msg":"Express","colors":"cyan"},{"msg":"127.0.0.1","colors":"red"},{"msg":"GET","colors":"green"},{"msg":"DESKTOP","colors":"grey"}],"file":false,"time":1477465679093,"location":{"filename":"expressLogger.js","line":43}},"args":{"0":"/logs/js/directives/menu.js"},"contextString":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T07:07:59.093Z ","argsString":"/logs/js/directives/menu.js","message":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T07:07:59.093Z /logs/js/directives/menu.js"} | ||
75 | +{"type":"info","show":{"tags":true,"location":false,"time":true,"date":false},"context":{"tags":[{"msg":"Express","colors":"cyan"},{"msg":"127.0.0.1","colors":"red"},{"msg":"GET","colors":"green"},{"msg":"DESKTOP","colors":"grey"}],"file":false,"time":1477465679098,"location":{"filename":"expressLogger.js","line":43}},"args":{"0":"/logs/js/services/scribeAPI.js"},"contextString":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T07:07:59.098Z ","argsString":"/logs/js/services/scribeAPI.js","message":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T07:07:59.098Z /logs/js/services/scribeAPI.js"} | ||
76 | +{"type":"info","show":{"tags":true,"location":false,"time":true,"date":false},"context":{"tags":[{"msg":"Express","colors":"cyan"},{"msg":"127.0.0.1","colors":"red"},{"msg":"GET","colors":"green"},{"msg":"DESKTOP","colors":"grey"}],"file":false,"time":1477465679113,"location":{"filename":"expressLogger.js","line":43}},"args":{"0":"/logs/js/services/logs.js"},"contextString":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T07:07:59.113Z ","argsString":"/logs/js/services/logs.js","message":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T07:07:59.113Z /logs/js/services/logs.js"} | ||
77 | +{"type":"info","show":{"tags":true,"location":false,"time":true,"date":false},"context":{"tags":[{"msg":"Express","colors":"cyan"},{"msg":"127.0.0.1","colors":"red"},{"msg":"GET","colors":"green"},{"msg":"DESKTOP","colors":"grey"}],"file":false,"time":1477465679127,"location":{"filename":"expressLogger.js","line":43}},"args":{"0":"/logs/js/controllers/homeController.js"},"contextString":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T07:07:59.127Z ","argsString":"/logs/js/controllers/homeController.js","message":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T07:07:59.127Z /logs/js/controllers/homeController.js"} | ||
78 | +{"type":"info","show":{"tags":true,"location":false,"time":true,"date":false},"context":{"tags":[{"msg":"Express","colors":"cyan"},{"msg":"127.0.0.1","colors":"red"},{"msg":"GET","colors":"green"},{"msg":"DESKTOP","colors":"grey"}],"file":false,"time":1477465679134,"location":{"filename":"expressLogger.js","line":43}},"args":{"0":"/logs/js/controllers/dateController.js"},"contextString":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T07:07:59.134Z ","argsString":"/logs/js/controllers/dateController.js","message":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T07:07:59.134Z /logs/js/controllers/dateController.js"} | ||
79 | +{"type":"info","show":{"tags":true,"location":false,"time":true,"date":false},"context":{"tags":[{"msg":"Express","colors":"cyan"},{"msg":"127.0.0.1","colors":"red"},{"msg":"GET","colors":"green"},{"msg":"DESKTOP","colors":"grey"}],"file":false,"time":1477465679147,"location":{"filename":"expressLogger.js","line":43}},"args":{"0":"/logs/js/controllers/folderController.js"},"contextString":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T07:07:59.147Z ","argsString":"/logs/js/controllers/folderController.js","message":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T07:07:59.147Z /logs/js/controllers/folderController.js"} | ||
80 | +{"type":"info","show":{"tags":true,"location":false,"time":true,"date":false},"context":{"tags":[{"msg":"Express","colors":"cyan"},{"msg":"127.0.0.1","colors":"red"},{"msg":"GET","colors":"green"},{"msg":"DESKTOP","colors":"grey"}],"file":false,"time":1477465679172,"location":{"filename":"expressLogger.js","line":43}},"args":{"0":"/logs/js/controllers/logsController.js"},"contextString":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T07:07:59.172Z ","argsString":"/logs/js/controllers/logsController.js","message":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T07:07:59.172Z /logs/js/controllers/logsController.js"} | ||
81 | +{"type":"info","show":{"tags":true,"location":false,"time":true,"date":false},"context":{"tags":[{"msg":"Express","colors":"cyan"},{"msg":"127.0.0.1","colors":"red"},{"msg":"GET","colors":"green"},{"msg":"DESKTOP","colors":"grey"}],"file":false,"time":1477465679187,"location":{"filename":"expressLogger.js","line":43}},"args":{"0":"/logs/img/menu.png"},"contextString":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T07:07:59.187Z ","argsString":"/logs/img/menu.png","message":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T07:07:59.187Z /logs/img/menu.png"} | ||
82 | +{"type":"info","show":{"tags":true,"location":false,"time":true,"date":false},"context":{"tags":[{"msg":"Express","colors":"cyan"},{"msg":"127.0.0.1","colors":"red"},{"msg":"GET","colors":"green"},{"msg":"DESKTOP","colors":"grey"}],"file":false,"time":1477465679189,"location":{"filename":"expressLogger.js","line":43}},"args":{"0":"/logs/img/logo.png"},"contextString":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T07:07:59.189Z ","argsString":"/logs/img/logo.png","message":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T07:07:59.189Z /logs/img/logo.png"} | ||
83 | +{"type":"info","show":{"tags":true,"location":false,"time":true,"date":false},"context":{"tags":[{"msg":"Express","colors":"cyan"},{"msg":"127.0.0.1","colors":"red"},{"msg":"GET","colors":"green"},{"msg":"DESKTOP","colors":"grey"}],"file":false,"time":1477465679268,"location":{"filename":"expressLogger.js","line":43}},"args":{"0":"/logs/api"},"contextString":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T07:07:59.268Z ","argsString":"/logs/api","message":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T07:07:59.268Z /logs/api"} | ||
84 | +{"type":"info","show":{"tags":true,"location":false,"time":true,"date":false},"context":{"tags":[{"msg":"Express","colors":"cyan"},{"msg":"127.0.0.1","colors":"red"},{"msg":"GET","colors":"green"},{"msg":"DESKTOP","colors":"grey"}],"file":false,"time":1477465679269,"location":{"filename":"expressLogger.js","line":43}},"args":{"0":"/logs/api/timezoneOffset"},"contextString":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T07:07:59.269Z ","argsString":"/logs/api/timezoneOffset","message":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T07:07:59.269Z /logs/api/timezoneOffset"} | ||
85 | +{"type":"info","show":{"tags":true,"location":false,"time":true,"date":false},"context":{"tags":[{"msg":"Express","colors":"cyan"},{"msg":"127.0.0.1","colors":"red"},{"msg":"GET","colors":"green"},{"msg":"DESKTOP","colors":"grey"}],"file":false,"time":1477465679278,"location":{"filename":"expressLogger.js","line":43}},"args":{"0":"/logs/partials/folder.html"},"contextString":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T07:07:59.278Z ","argsString":"/logs/partials/folder.html","message":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T07:07:59.278Z /logs/partials/folder.html"} | ||
86 | +{"type":"info","show":{"tags":true,"location":false,"time":true,"date":false},"context":{"tags":[{"msg":"Express","colors":"cyan"},{"msg":"127.0.0.1","colors":"red"},{"msg":"GET","colors":"green"},{"msg":"DESKTOP","colors":"grey"}],"file":false,"time":1477465679298,"location":{"filename":"expressLogger.js","line":43}},"args":{"0":"/logs/api/log?path=logs%2Fhistory.json"},"contextString":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T07:07:59.298Z ","argsString":"/logs/api/log?path=logs%2Fhistory.json","message":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T07:07:59.298Z /logs/api/log?path=logs%2Fhistory.json"} | ||
87 | +{"type":"info","show":{"tags":true,"location":false,"time":true,"date":false},"context":{"tags":[{"msg":"Express","colors":"cyan"},{"msg":"127.0.0.1","colors":"red"},{"msg":"GET","colors":"green"},{"msg":"DESKTOP","colors":"grey"}],"file":false,"time":1477465679330,"location":{"filename":"expressLogger.js","line":43}},"args":{"0":"/logs/partials/elements/sidebarLoggers.html"},"contextString":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T07:07:59.330Z ","argsString":"/logs/partials/elements/sidebarLoggers.html","message":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T07:07:59.330Z /logs/partials/elements/sidebarLoggers.html"} | ||
88 | +{"type":"info","show":{"tags":true,"location":false,"time":true,"date":false},"context":{"tags":[{"msg":"Express","colors":"cyan"},{"msg":"127.0.0.1","colors":"red"},{"msg":"GET","colors":"green"},{"msg":"DESKTOP","colors":"grey"}],"file":false,"time":1477465679331,"location":{"filename":"expressLogger.js","line":43}},"args":{"0":"/logs/partials/elements/blocks.html"},"contextString":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T07:07:59.331Z ","argsString":"/logs/partials/elements/blocks.html","message":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T07:07:59.331Z /logs/partials/elements/blocks.html"} | ||
89 | +{"type":"info","show":{"tags":true,"location":false,"time":true,"date":false},"context":{"tags":[{"msg":"Express","colors":"cyan"},{"msg":"127.0.0.1","colors":"red"},{"msg":"GET","colors":"green"},{"msg":"DESKTOP","colors":"grey"}],"file":false,"time":1477465680678,"location":{"filename":"expressLogger.js","line":43}},"args":{"0":"/logs/api/dateExplorer?from=1477465680676&length=10&logFolder=logs"},"contextString":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T07:08:00.678Z ","argsString":"/logs/api/dateExplorer?from=1477465680676&length=10&logFolder=logs","message":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T07:08:00.678Z /logs/api/dateExplorer?from=1477465680676&length=10&logFolder=logs"} | ||
90 | +{"type":"info","show":{"tags":true,"location":false,"time":true,"date":false},"context":{"tags":[{"msg":"Express","colors":"cyan"},{"msg":"127.0.0.1","colors":"red"},{"msg":"GET","colors":"green"},{"msg":"DESKTOP","colors":"grey"}],"file":false,"time":1477465680681,"location":{"filename":"expressLogger.js","line":43}},"args":{"0":"/logs/partials/dates.html"},"contextString":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T07:08:00.681Z ","argsString":"/logs/partials/dates.html","message":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T07:08:00.681Z /logs/partials/dates.html"} | ||
91 | +{"type":"info","show":{"tags":true,"location":false,"time":true,"date":false},"context":{"tags":[{"msg":"Express","colors":"cyan"},{"msg":"127.0.0.1","colors":"red"},{"msg":"GET","colors":"green"},{"msg":"DESKTOP","colors":"grey"}],"file":false,"time":1477465680718,"location":{"filename":"expressLogger.js","line":43}},"args":{"0":"/logs/fonts/fontello.woff2"},"contextString":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T07:08:00.718Z ","argsString":"/logs/fonts/fontello.woff2","message":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T07:08:00.718Z /logs/fonts/fontello.woff2"} | ||
92 | +{"type":"info","show":{"tags":true,"location":false,"time":true,"date":false},"context":{"tags":[{"msg":"Express","colors":"cyan"},{"msg":"127.0.0.1","colors":"red"},{"msg":"GET","colors":"green"},{"msg":"DESKTOP","colors":"grey"}],"file":false,"time":1477465680732,"location":{"filename":"expressLogger.js","line":43}},"args":{"0":"/logs/fonts/fontello.woff"},"contextString":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T07:08:00.732Z ","argsString":"/logs/fonts/fontello.woff","message":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T07:08:00.732Z /logs/fonts/fontello.woff"} | ||
93 | +{"type":"info","show":{"tags":true,"location":false,"time":true,"date":false},"context":{"tags":[{"msg":"Express","colors":"cyan"},{"msg":"127.0.0.1","colors":"red"},{"msg":"GET","colors":"green"},{"msg":"DESKTOP","colors":"grey"}],"file":false,"time":1477465681394,"location":{"filename":"expressLogger.js","line":43}},"args":{"0":"/logs/partials/logs.html"},"contextString":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T07:08:01.394Z ","argsString":"/logs/partials/logs.html","message":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T07:08:01.394Z /logs/partials/logs.html"} | ||
94 | +{"type":"info","show":{"tags":true,"location":false,"time":true,"date":false},"context":{"tags":[{"msg":"Express","colors":"cyan"},{"msg":"127.0.0.1","colors":"red"},{"msg":"GET","colors":"green"},{"msg":"DESKTOP","colors":"grey"}],"file":false,"time":1477465681410,"location":{"filename":"expressLogger.js","line":43}},"args":{"0":"/logs/partials/elements/sidebarLogs.html"},"contextString":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T07:08:01.410Z ","argsString":"/logs/partials/elements/sidebarLogs.html","message":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T07:08:01.410Z /logs/partials/elements/sidebarLogs.html"} | ||
95 | +{"type":"info","show":{"tags":true,"location":false,"time":true,"date":false},"context":{"tags":[{"msg":"Express","colors":"cyan"},{"msg":"127.0.0.1","colors":"red"},{"msg":"GET","colors":"green"},{"msg":"DESKTOP","colors":"grey"}],"file":false,"time":1477465681412,"location":{"filename":"expressLogger.js","line":43}},"args":{"0":"/logs/partials/elements/menu.html"},"contextString":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T07:08:01.412Z ","argsString":"/logs/partials/elements/menu.html","message":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T07:08:01.412Z /logs/partials/elements/menu.html"} | ||
96 | +{"type":"info","show":{"tags":true,"location":false,"time":true,"date":false},"context":{"tags":[{"msg":"Express","colors":"cyan"},{"msg":"127.0.0.1","colors":"red"},{"msg":"GET","colors":"green"},{"msg":"DESKTOP","colors":"grey"}],"file":false,"time":1477465681415,"location":{"filename":"expressLogger.js","line":43}},"args":{"0":"/logs/partials/elements/log.html"},"contextString":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T07:08:01.415Z ","argsString":"/logs/partials/elements/log.html","message":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T07:08:01.415Z /logs/partials/elements/log.html"} | ||
97 | +{"type":"info","show":{"tags":true,"location":false,"time":true,"date":false},"context":{"tags":[{"msg":"Express","colors":"cyan"},{"msg":"127.0.0.1","colors":"red"},{"msg":"GET","colors":"green"},{"msg":"DESKTOP","colors":"grey"}],"file":false,"time":1477465681422,"location":{"filename":"expressLogger.js","line":43}},"args":{"0":"/logs/api/log?path=logs%5C2016%5COct%5C26_oct_16.log.json"},"contextString":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T07:08:01.422Z ","argsString":"/logs/api/log?path=logs%5C2016%5COct%5C26_oct_16.log.json","message":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T07:08:01.422Z /logs/api/log?path=logs%5C2016%5COct%5C26_oct_16.log.json"} | ||
98 | +{"type":"info","show":{"tags":true,"location":false,"time":true,"date":false},"context":{"tags":[{"msg":"Express","colors":"cyan"},{"msg":"127.0.0.1","colors":"red"},{"msg":"GET","colors":"green"},{"msg":"DESKTOP","colors":"grey"}],"file":false,"time":1477465734924,"location":{"filename":"expressLogger.js","line":43}},"args":{"0":"/api/email/"},"contextString":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T07:08:54.924Z ","argsString":"/api/email/","message":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T07:08:54.924Z /api/email/"} | ||
99 | +{"type":"info","show":{"tags":true,"location":false,"time":true,"date":false},"context":{"tags":[{"msg":"Express","colors":"cyan"},{"msg":"127.0.0.1","colors":"red"},{"msg":"GET","colors":"green"},{"msg":"DESKTOP","colors":"grey"}],"file":false,"time":1477465737401,"location":{"filename":"expressLogger.js","line":43}},"args":{"0":"/api/email/1"},"contextString":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T07:08:57.401Z ","argsString":"/api/email/1","message":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T07:08:57.401Z /api/email/1"} | ||
100 | +{"type":"info","show":{"tags":true,"location":false,"time":true,"date":false},"context":{"tags":[{"msg":"Express","colors":"cyan"},{"msg":"127.0.0.1","colors":"red"},{"msg":"GET","colors":"green"},{"msg":"DESKTOP","colors":"grey"}],"file":false,"time":1477465740100,"location":{"filename":"expressLogger.js","line":43}},"args":{"0":"/logs/api/log?path=logs%5C2016%5COct%5C26_oct_16.log.json"},"contextString":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T07:09:00.100Z ","argsString":"/logs/api/log?path=logs%5C2016%5COct%5C26_oct_16.log.json","message":"\u001b[36m[Express]\u001b[39m\u001b[31m[127.0.0.1]\u001b[39m\u001b[32m[GET]\u001b[39m\u001b[90m[DESKTOP]\u001b[39m 2016-10-26T07:09:00.100Z /logs/api/log?path=logs%5C2016%5COct%5C26_oct_16.log.json"} |
@@ -0,0 +1,44 @@ | @@ -0,0 +1,44 @@ | ||
1 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477456255956,"location":{"filename":"server.js","line":16}},"args":{"0":"Web server listening at: %s","1":"http://localhost:3000"},"contextString":"","argsString":"Web server listening at: http://localhost:3000","message":"Web server listening at: http://localhost:3000"} | ||
2 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477456255956,"location":{"filename":"server.js","line":19}},"args":{"0":"Browse your REST API at %s%s","1":"http://localhost:3000","2":"/explorer"},"contextString":"","argsString":"Browse your REST API at http://localhost:3000/explorer","message":"Browse your REST API at http://localhost:3000/explorer"} | ||
3 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477456283174,"location":{"filename":"server.js","line":19}},"args":{"0":"Browse your REST API at %s%s","1":"http://localhost:3000","2":"/explorer"},"contextString":"","argsString":"Browse your REST API at http://localhost:3000/explorer","message":"Browse your REST API at http://localhost:3000/explorer"} | ||
4 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477456283174,"location":{"filename":"server.js","line":16}},"args":{"0":"Web server listening at: %s","1":"http://localhost:3000"},"contextString":"","argsString":"Web server listening at: http://localhost:3000","message":"Web server listening at: http://localhost:3000"} | ||
5 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477456333471,"location":{"filename":"server.js","line":16}},"args":{"0":"Web server listening at: %s","1":"http://localhost:3000"},"contextString":"","argsString":"Web server listening at: http://localhost:3000","message":"Web server listening at: http://localhost:3000"} | ||
6 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477456333471,"location":{"filename":"server.js","line":19}},"args":{"0":"Browse your REST API at %s%s","1":"http://localhost:3000","2":"/explorer"},"contextString":"","argsString":"Browse your REST API at http://localhost:3000/explorer","message":"Browse your REST API at http://localhost:3000/explorer"} | ||
7 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["output"],"file":true,"time":1477456421844,"location":{"filename":"emails.js","line":62}},"args":{"0":{"resultCode":"20000","resultDescription":"Success"}},"contextString":"[output] [emails.js:62] 2016-10-26T04:33:41.844Z ","argsString":"{\n \"resultCode\": \"20000\",\n \"resultDescription\": \"Success\"\n}","message":"[output] [emails.js:62] 2016-10-26T04:33:41.844Z {\n \"resultCode\": \"20000\",\n \"resultDescription\": \"Success\"\n}"} | ||
8 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477457000967,"location":{"filename":"server.js","line":16}},"args":{"0":"Web server listening at: %s","1":"http://localhost:3000"},"contextString":"","argsString":"Web server listening at: http://localhost:3000","message":"Web server listening at: http://localhost:3000"} | ||
9 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477457000970,"location":{"filename":"server.js","line":19}},"args":{"0":"Browse your REST API at %s%s","1":"http://localhost:3000","2":"/explorer"},"contextString":"","argsString":"Browse your REST API at http://localhost:3000/explorer","message":"Browse your REST API at http://localhost:3000/explorer"} | ||
10 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["input"],"file":true,"time":1477457032550,"location":{"filename":"testpost.js","line":8}},"args":{"0":{"app_id":0,"email":"string","created_at":"2016-10-26"}},"contextString":"[input] [testpost.js:8] 2016-10-26T04:43:52.550Z ","argsString":"{\n \"app_id\": 0,\n \"email\": \"string\",\n \"created_at\": \"2016-10-26\"\n}","message":"[input] [testpost.js:8] 2016-10-26T04:43:52.550Z {\n \"app_id\": 0,\n \"email\": \"string\",\n \"created_at\": \"2016-10-26\"\n}"} | ||
11 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["output"],"file":true,"time":1477457032561,"location":{"filename":"testpost.js","line":23}},"args":{"0":{"resultCode":"20000","resultDescription":"Success"}},"contextString":"[output] [testpost.js:23] 2016-10-26T04:43:52.561Z ","argsString":"{\n \"resultCode\": \"20000\",\n \"resultDescription\": \"Success\"\n}","message":"[output] [testpost.js:23] 2016-10-26T04:43:52.561Z {\n \"resultCode\": \"20000\",\n \"resultDescription\": \"Success\"\n}"} | ||
12 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["input"],"file":true,"time":1477457063447,"location":{"filename":"testpost.js","line":8}},"args":{"0":{"app_id":0,"email":"string","created_at":"2016-10-26"}},"contextString":"[input] [testpost.js:8] 2016-10-26T04:44:23.447Z ","argsString":"{\n \"app_id\": 0,\n \"email\": \"string\",\n \"created_at\": \"2016-10-26\"\n}","message":"[input] [testpost.js:8] 2016-10-26T04:44:23.447Z {\n \"app_id\": 0,\n \"email\": \"string\",\n \"created_at\": \"2016-10-26\"\n}"} | ||
13 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["output"],"file":true,"time":1477457063453,"location":{"filename":"testpost.js","line":23}},"args":{"0":{"resultCode":"20000","resultDescription":"Success"}},"contextString":"[output] [testpost.js:23] 2016-10-26T04:44:23.453Z ","argsString":"{\n \"resultCode\": \"20000\",\n \"resultDescription\": \"Success\"\n}","message":"[output] [testpost.js:23] 2016-10-26T04:44:23.453Z {\n \"resultCode\": \"20000\",\n \"resultDescription\": \"Success\"\n}"} | ||
14 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["output"],"file":true,"time":1477457894897,"location":{"filename":"emails.js","line":62}},"args":{"0":{"resultCode":"20000","resultDescription":"Success"}},"contextString":"[output] [emails.js:62] 2016-10-26T04:58:14.897Z ","argsString":"{\n \"resultCode\": \"20000\",\n \"resultDescription\": \"Success\"\n}","message":"[output] [emails.js:62] 2016-10-26T04:58:14.897Z {\n \"resultCode\": \"20000\",\n \"resultDescription\": \"Success\"\n}"} | ||
15 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477457899348,"location":{"filename":"server.js","line":16}},"args":{"0":"Web server listening at: %s","1":"http://localhost:3000"},"contextString":"","argsString":"Web server listening at: http://localhost:3000","message":"Web server listening at: http://localhost:3000"} | ||
16 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477457899351,"location":{"filename":"server.js","line":19}},"args":{"0":"Browse your REST API at %s%s","1":"http://localhost:3000","2":"/explorer"},"contextString":"","argsString":"Browse your REST API at http://localhost:3000/explorer","message":"Browse your REST API at http://localhost:3000/explorer"} | ||
17 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["input"],"file":true,"time":1477457901009,"location":{"filename":"emails.js","line":46}},"args":{"0":{"app_id":1,"email":"surabillsszA@gmail.com"}},"contextString":"[input] [emails.js:46] 2016-10-26T04:58:21.009Z ","argsString":"{\n \"app_id\": 1,\n \"email\": \"surabillsszA@gmail.com\"\n}","message":"[input] [emails.js:46] 2016-10-26T04:58:21.009Z {\n \"app_id\": 1,\n \"email\": \"surabillsszA@gmail.com\"\n}"} | ||
18 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["output"],"file":true,"time":1477457901037,"location":{"filename":"emails.js","line":61}},"args":{"0":{"resultCode":"20000","resultDescription":"Success"}},"contextString":"[output] [emails.js:61] 2016-10-26T04:58:21.037Z ","argsString":"{\n \"resultCode\": \"20000\",\n \"resultDescription\": \"Success\"\n}","message":"[output] [emails.js:61] 2016-10-26T04:58:21.037Z {\n \"resultCode\": \"20000\",\n \"resultDescription\": \"Success\"\n}"} | ||
19 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477458030440,"location":{"filename":"server.js","line":16}},"args":{"0":"Web server listening at: %s","1":"http://localhost:3000"},"contextString":"","argsString":"Web server listening at: http://localhost:3000","message":"Web server listening at: http://localhost:3000"} | ||
20 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477458030444,"location":{"filename":"server.js","line":19}},"args":{"0":"Browse your REST API at %s%s","1":"http://localhost:3000","2":"/explorer"},"contextString":"","argsString":"Browse your REST API at http://localhost:3000/explorer","message":"Browse your REST API at http://localhost:3000/explorer"} | ||
21 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477458054642,"location":{"filename":"server.js","line":19}},"args":{"0":"Browse your REST API at %s%s","1":"http://localhost:3000","2":"/explorer"},"contextString":"","argsString":"Browse your REST API at http://localhost:3000/explorer","message":"Browse your REST API at http://localhost:3000/explorer"} | ||
22 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477458054638,"location":{"filename":"server.js","line":16}},"args":{"0":"Web server listening at: %s","1":"http://localhost:3000"},"contextString":"","argsString":"Web server listening at: http://localhost:3000","message":"Web server listening at: http://localhost:3000"} | ||
23 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["query"],"file":true,"time":1477458075108,"location":{"filename":"emails.js","line":74}},"args":{"0":"UPDATE scmail SET modified_at ='2016-10-26T12:01:15',email ='surabillsszA@gmail.com' WHERE id = '3'"},"contextString":"[query] [emails.js:74] 2016-10-26T05:01:15.108Z ","argsString":"UPDATE scmail SET modified_at ='2016-10-26T12:01:15',email ='surabillsszA@gmail.com' WHERE id = '3'","message":"[query] [emails.js:74] 2016-10-26T05:01:15.108Z UPDATE scmail SET modified_at ='2016-10-26T12:01:15',email ='surabillsszA@gmail.com' WHERE id = '3'"} | ||
24 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["input"],"file":true,"time":1477458075106,"location":{"filename":"emails.js","line":68}},"args":{"0":{"id":3,"app_id":1,"email":"surabillsszA@gmail.com"}},"contextString":"[input] [emails.js:68] 2016-10-26T05:01:15.106Z ","argsString":"{\n \"id\": 3,\n \"app_id\": 1,\n \"email\": \"surabillsszA@gmail.com\"\n}","message":"[input] [emails.js:68] 2016-10-26T05:01:15.106Z {\n \"id\": 3,\n \"app_id\": 1,\n \"email\": \"surabillsszA@gmail.com\"\n}"} | ||
25 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["output"],"file":true,"time":1477458075115,"location":{"filename":"emails.js","line":89}},"args":{"0":{"resultCode":"20000","resultDescription":"Success"}},"contextString":"[output] [emails.js:89] 2016-10-26T05:01:15.115Z ","argsString":"{\n \"resultCode\": \"20000\",\n \"resultDescription\": \"Success\"\n}","message":"[output] [emails.js:89] 2016-10-26T05:01:15.115Z {\n \"resultCode\": \"20000\",\n \"resultDescription\": \"Success\"\n}"} | ||
26 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477458110821,"location":{"filename":"server.js","line":16}},"args":{"0":"Web server listening at: %s","1":"http://localhost:3000"},"contextString":"","argsString":"Web server listening at: http://localhost:3000","message":"Web server listening at: http://localhost:3000"} | ||
27 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477458110826,"location":{"filename":"server.js","line":19}},"args":{"0":"Browse your REST API at %s%s","1":"http://localhost:3000","2":"/explorer"},"contextString":"","argsString":"Browse your REST API at http://localhost:3000/explorer","message":"Browse your REST API at http://localhost:3000/explorer"} | ||
28 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477458132935,"location":{"filename":"server.js","line":16}},"args":{"0":"Web server listening at: %s","1":"http://localhost:3000"},"contextString":"","argsString":"Web server listening at: http://localhost:3000","message":"Web server listening at: http://localhost:3000"} | ||
29 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477458132938,"location":{"filename":"server.js","line":19}},"args":{"0":"Browse your REST API at %s%s","1":"http://localhost:3000","2":"/explorer"},"contextString":"","argsString":"Browse your REST API at http://localhost:3000/explorer","message":"Browse your REST API at http://localhost:3000/explorer"} | ||
30 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477458191814,"location":{"filename":"server.js","line":16}},"args":{"0":"Web server listening at: %s","1":"http://localhost:3000"},"contextString":"","argsString":"Web server listening at: http://localhost:3000","message":"Web server listening at: http://localhost:3000"} | ||
31 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477458191817,"location":{"filename":"server.js","line":19}},"args":{"0":"Browse your REST API at %s%s","1":"http://localhost:3000","2":"/explorer"},"contextString":"","argsString":"Browse your REST API at http://localhost:3000/explorer","message":"Browse your REST API at http://localhost:3000/explorer"} | ||
32 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["query"],"file":true,"time":1477458193793,"location":{"filename":"emails.js","line":74}},"args":{"0":"UPDATE scmail SET modified_at ='2016-10-26T12:03:13',email ='surabillsszA@gmail.com' WHERE id = '3'"},"contextString":"[query] [emails.js:74] 2016-10-26T05:03:13.793Z ","argsString":"UPDATE scmail SET modified_at ='2016-10-26T12:03:13',email ='surabillsszA@gmail.com' WHERE id = '3'","message":"[query] [emails.js:74] 2016-10-26T05:03:13.793Z UPDATE scmail SET modified_at ='2016-10-26T12:03:13',email ='surabillsszA@gmail.com' WHERE id = '3'"} | ||
33 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["input"],"file":true,"time":1477458193791,"location":{"filename":"emails.js","line":68}},"args":{"0":{"id":3,"app_id":1,"email":"surabillsszA@gmail.com"}},"contextString":"[input] [emails.js:68] 2016-10-26T05:03:13.791Z ","argsString":"{\n \"id\": 3,\n \"app_id\": 1,\n \"email\": \"surabillsszA@gmail.com\"\n}","message":"[input] [emails.js:68] 2016-10-26T05:03:13.791Z {\n \"id\": 3,\n \"app_id\": 1,\n \"email\": \"surabillsszA@gmail.com\"\n}"} | ||
34 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["output"],"file":true,"time":1477458193801,"location":{"filename":"emails.js","line":89}},"args":{"0":{"resultCode":"20000","resultDescription":"Success"}},"contextString":"[output] [emails.js:89] 2016-10-26T05:03:13.801Z ","argsString":"{\n \"resultCode\": \"20000\",\n \"resultDescription\": \"Success\"\n}","message":"[output] [emails.js:89] 2016-10-26T05:03:13.801Z {\n \"resultCode\": \"20000\",\n \"resultDescription\": \"Success\"\n}"} | ||
35 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477458237554,"location":{"filename":"server.js","line":16}},"args":{"0":"Web server listening at: %s","1":"http://localhost:3000"},"contextString":"","argsString":"Web server listening at: http://localhost:3000","message":"Web server listening at: http://localhost:3000"} | ||
36 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477458237557,"location":{"filename":"server.js","line":19}},"args":{"0":"Browse your REST API at %s%s","1":"http://localhost:3000","2":"/explorer"},"contextString":"","argsString":"Browse your REST API at http://localhost:3000/explorer","message":"Browse your REST API at http://localhost:3000/explorer"} | ||
37 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["query"],"file":true,"time":1477458244625,"location":{"filename":"emails.js","line":101}},"args":{"0":"UPDATE scmail SET deleted_at ='2016-10-26T12:04:04' WHERE id = '3'"},"contextString":"[query] [emails.js:101] 2016-10-26T05:04:04.625Z ","argsString":"UPDATE scmail SET deleted_at ='2016-10-26T12:04:04' WHERE id = '3'","message":"[query] [emails.js:101] 2016-10-26T05:04:04.625Z UPDATE scmail SET deleted_at ='2016-10-26T12:04:04' WHERE id = '3'"} | ||
38 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["output"],"file":true,"time":1477458244632,"location":{"filename":"emails.js","line":117}},"args":{"0":{"resultCode":"20000","resultDescription":"Success"}},"contextString":"[output] [emails.js:117] 2016-10-26T05:04:04.632Z ","argsString":"{\n \"resultCode\": \"20000\",\n \"resultDescription\": \"Success\"\n}","message":"[output] [emails.js:117] 2016-10-26T05:04:04.632Z {\n \"resultCode\": \"20000\",\n \"resultDescription\": \"Success\"\n}"} | ||
39 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477458279152,"location":{"filename":"server.js","line":16}},"args":{"0":"Web server listening at: %s","1":"http://localhost:3000"},"contextString":"","argsString":"Web server listening at: http://localhost:3000","message":"Web server listening at: http://localhost:3000"} | ||
40 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477458279155,"location":{"filename":"server.js","line":19}},"args":{"0":"Browse your REST API at %s%s","1":"http://localhost:3000","2":"/explorer"},"contextString":"","argsString":"Browse your REST API at http://localhost:3000/explorer","message":"Browse your REST API at http://localhost:3000/explorer"} | ||
41 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477465664056,"location":{"filename":"server.js","line":19}},"args":{"0":"Browse your REST API at %s%s","1":"http://localhost:3037","2":"/explorer"},"contextString":"","argsString":"Browse your REST API at http://localhost:3037/explorer","message":"Browse your REST API at http://localhost:3037/explorer"} | ||
42 | +{"type":"log","show":{"tags":false,"location":false,"time":false,"date":false},"context":{"tags":[],"file":false,"time":1477465664052,"location":{"filename":"server.js","line":16}},"args":{"0":"Web server listening at: %s","1":"http://localhost:3037"},"contextString":"","argsString":"Web server listening at: http://localhost:3037","message":"Web server listening at: http://localhost:3037"} | ||
43 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["query output"],"file":true,"time":1477465737424,"location":{"filename":"emails.js","line":22}},"args":{"0":[{"id":2,"app_id":1,"email":"deathbill99@gmail.com","created_at":"2016-10-21T10:42:21.000Z","modified_at":null,"deleted_at":null},{"id":5,"app_id":1,"email":"surabillzA@gmail.com","created_at":null,"modified_at":null,"deleted_at":null},{"id":6,"app_id":1,"email":"surabil5lz@gmail.com","created_at":"2016-10-25T09:57:31.000Z","modified_at":"2016-10-25T09:57:24.000Z","deleted_at":null},{"id":10,"app_id":1,"email":"surabillsszA@gmail.com","created_at":"2016-10-25T16:00:10.000Z","modified_at":null,"deleted_at":null},{"id":11,"app_id":1,"email":"surabillsszA@gmail.com","created_at":null,"modified_at":null,"deleted_at":null},{"id":12,"app_id":1,"email":"surabillsszA@gmail.com","created_at":"2016-10-25T16:08:10.000Z","modified_at":null,"deleted_at":null},{"id":13,"app_id":1,"email":"surabillsszA@gmail.com","created_at":"2016-10-25T16:08:59.000Z","modified_at":null,"deleted_at":null},{"id":14,"app_id":1,"email":"surabillsszA@gmail.com","created_at":"2016-10-25T16:09:42.000Z","modified_at":null,"deleted_at":null},{"id":15,"app_id":1,"email":"surabillsszA@gmail.com","created_at":"2016-10-25T16:11:23.000Z","modified_at":null,"deleted_at":null},{"id":16,"app_id":1,"email":"surabillsszA@gmail.com","created_at":"2016-10-25T16:11:33.000Z","modified_at":null,"deleted_at":null},{"id":17,"app_id":1,"email":"surabillsszA@gmail.com","created_at":"2016-10-25T16:12:06.000Z","modified_at":null,"deleted_at":null},{"id":18,"app_id":1,"email":"surabillsszA@gmail.com","created_at":"2016-10-25T16:18:41.000Z","modified_at":null,"deleted_at":null},{"id":19,"app_id":1,"email":"surabillsszA@gmail.com","created_at":"2016-10-25T16:18:59.000Z","modified_at":null,"deleted_at":null},{"id":20,"app_id":1,"email":"surabillsszA@gmail.com","created_at":"2016-10-25T16:24:07.000Z","modified_at":null,"deleted_at":null},{"id":21,"app_id":1,"email":"surabillsszA@gmail.com","created_at":"2016-10-26T11:33:41.000Z","modified_at":null,"deleted_at":null},{"id":24,"app_id":1,"email":"surabillsszA@gmail.com","created_at":"2016-10-26T11:58:14.000Z","modified_at":null,"deleted_at":null},{"id":25,"app_id":1,"email":"surabillsszA@gmail.com","created_at":null,"modified_at":null,"deleted_at":null}]},"contextString":"[query output] [emails.js:22] 2016-10-26T07:08:57.424Z ","argsString":"[\n {\n \"id\": 2,\n \"app_id\": 1,\n \"email\": \"deathbill99@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:21.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 5,\n \"app_id\": 1,\n \"email\": \"surabillzA@gmail.com\",\n \"created_at\": null,\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 6,\n \"app_id\": 1,\n \"email\": \"surabil5lz@gmail.com\",\n \"created_at\": \"2016-10-25T09:57:31.000Z\",\n \"modified_at\": \"2016-10-25T09:57:24.000Z\",\n \"deleted_at\": null\n },\n {\n \"id\": 10,\n \"app_id\": 1,\n \"email\": \"surabillsszA@gmail.com\",\n \"created_at\": \"2016-10-25T16:00:10.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 11,\n \"app_id\": 1,\n \"email\": \"surabillsszA@gmail.com\",\n \"created_at\": null,\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 12,\n \"app_id\": 1,\n \"email\": \"surabillsszA@gmail.com\",\n \"created_at\": \"2016-10-25T16:08:10.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 13,\n \"app_id\": 1,\n \"email\": \"surabillsszA@gmail.com\",\n \"created_at\": \"2016-10-25T16:08:59.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 14,\n \"app_id\": 1,\n \"email\": \"surabillsszA@gmail.com\",\n \"created_at\": \"2016-10-25T16:09:42.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 15,\n \"app_id\": 1,\n \"email\": \"surabillsszA@gmail.com\",\n \"created_at\": \"2016-10-25T16:11:23.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 16,\n \"app_id\": 1,\n \"email\": \"surabillsszA@gmail.com\",\n \"created_at\": \"2016-10-25T16:11:33.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 17,\n \"app_id\": 1,\n \"email\": \"surabillsszA@gmail.com\",\n \"created_at\": \"2016-10-25T16:12:06.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 18,\n \"app_id\": 1,\n \"email\": \"surabillsszA@gmail.com\",\n \"created_at\": \"2016-10-25T16:18:41.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 19,\n \"app_id\": 1,\n \"email\": \"surabillsszA@gmail.com\",\n \"created_at\": \"2016-10-25T16:18:59.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 20,\n \"app_id\": 1,\n \"email\": \"surabillsszA@gmail.com\",\n \"created_at\": \"2016-10-25T16:24:07.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 21,\n \"app_id\": 1,\n \"email\": \"surabillsszA@gmail.com\",\n \"created_at\": \"2016-10-26T11:33:41.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 24,\n \"app_id\": 1,\n \"email\": \"surabillsszA@gmail.com\",\n \"created_at\": \"2016-10-26T11:58:14.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 25,\n \"app_id\": 1,\n \"email\": \"surabillsszA@gmail.com\",\n \"created_at\": null,\n \"modified_at\": null,\n \"deleted_at\": null\n }\n]","message":"[query output] [emails.js:22] 2016-10-26T07:08:57.424Z [\n {\n \"id\": 2,\n \"app_id\": 1,\n \"email\": \"deathbill99@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:21.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 5,\n \"app_id\": 1,\n \"email\": \"surabillzA@gmail.com\",\n \"created_at\": null,\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 6,\n \"app_id\": 1,\n \"email\": \"surabil5lz@gmail.com\",\n \"created_at\": \"2016-10-25T09:57:31.000Z\",\n \"modified_at\": \"2016-10-25T09:57:24.000Z\",\n \"deleted_at\": null\n },\n {\n \"id\": 10,\n \"app_id\": 1,\n \"email\": \"surabillsszA@gmail.com\",\n \"created_at\": \"2016-10-25T16:00:10.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 11,\n \"app_id\": 1,\n \"email\": \"surabillsszA@gmail.com\",\n \"created_at\": null,\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 12,\n \"app_id\": 1,\n \"email\": \"surabillsszA@gmail.com\",\n \"created_at\": \"2016-10-25T16:08:10.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 13,\n \"app_id\": 1,\n \"email\": \"surabillsszA@gmail.com\",\n \"created_at\": \"2016-10-25T16:08:59.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 14,\n \"app_id\": 1,\n \"email\": \"surabillsszA@gmail.com\",\n \"created_at\": \"2016-10-25T16:09:42.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 15,\n \"app_id\": 1,\n \"email\": \"surabillsszA@gmail.com\",\n \"created_at\": \"2016-10-25T16:11:23.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 16,\n \"app_id\": 1,\n \"email\": \"surabillsszA@gmail.com\",\n \"created_at\": \"2016-10-25T16:11:33.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 17,\n \"app_id\": 1,\n \"email\": \"surabillsszA@gmail.com\",\n \"created_at\": \"2016-10-25T16:12:06.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 18,\n \"app_id\": 1,\n \"email\": \"surabillsszA@gmail.com\",\n \"created_at\": \"2016-10-25T16:18:41.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 19,\n \"app_id\": 1,\n \"email\": \"surabillsszA@gmail.com\",\n \"created_at\": \"2016-10-25T16:18:59.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 20,\n \"app_id\": 1,\n \"email\": \"surabillsszA@gmail.com\",\n \"created_at\": \"2016-10-25T16:24:07.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 21,\n \"app_id\": 1,\n \"email\": \"surabillsszA@gmail.com\",\n \"created_at\": \"2016-10-26T11:33:41.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 24,\n \"app_id\": 1,\n \"email\": \"surabillsszA@gmail.com\",\n \"created_at\": \"2016-10-26T11:58:14.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 25,\n \"app_id\": 1,\n \"email\": \"surabillsszA@gmail.com\",\n \"created_at\": null,\n \"modified_at\": null,\n \"deleted_at\": null\n }\n]"} | ||
44 | +{"type":"log","show":{"tags":true,"location":true,"time":true,"date":false},"context":{"tags":["output"],"file":true,"time":1477465737427,"location":{"filename":"emails.js","line":30}},"args":{"0":{"resultCode":"20000","resultDescription":"Success","data":{"user_id":[{"id":2,"app_id":1,"email":"deathbill99@gmail.com","created_at":"2016-10-21T10:42:21.000Z","modified_at":null,"deleted_at":null},{"id":5,"app_id":1,"email":"surabillzA@gmail.com","created_at":null,"modified_at":null,"deleted_at":null},{"id":6,"app_id":1,"email":"surabil5lz@gmail.com","created_at":"2016-10-25T09:57:31.000Z","modified_at":"2016-10-25T09:57:24.000Z","deleted_at":null},{"id":10,"app_id":1,"email":"surabillsszA@gmail.com","created_at":"2016-10-25T16:00:10.000Z","modified_at":null,"deleted_at":null},{"id":11,"app_id":1,"email":"surabillsszA@gmail.com","created_at":null,"modified_at":null,"deleted_at":null},{"id":12,"app_id":1,"email":"surabillsszA@gmail.com","created_at":"2016-10-25T16:08:10.000Z","modified_at":null,"deleted_at":null},{"id":13,"app_id":1,"email":"surabillsszA@gmail.com","created_at":"2016-10-25T16:08:59.000Z","modified_at":null,"deleted_at":null},{"id":14,"app_id":1,"email":"surabillsszA@gmail.com","created_at":"2016-10-25T16:09:42.000Z","modified_at":null,"deleted_at":null},{"id":15,"app_id":1,"email":"surabillsszA@gmail.com","created_at":"2016-10-25T16:11:23.000Z","modified_at":null,"deleted_at":null},{"id":16,"app_id":1,"email":"surabillsszA@gmail.com","created_at":"2016-10-25T16:11:33.000Z","modified_at":null,"deleted_at":null},{"id":17,"app_id":1,"email":"surabillsszA@gmail.com","created_at":"2016-10-25T16:12:06.000Z","modified_at":null,"deleted_at":null},{"id":18,"app_id":1,"email":"surabillsszA@gmail.com","created_at":"2016-10-25T16:18:41.000Z","modified_at":null,"deleted_at":null},{"id":19,"app_id":1,"email":"surabillsszA@gmail.com","created_at":"2016-10-25T16:18:59.000Z","modified_at":null,"deleted_at":null},{"id":20,"app_id":1,"email":"surabillsszA@gmail.com","created_at":"2016-10-25T16:24:07.000Z","modified_at":null,"deleted_at":null},{"id":21,"app_id":1,"email":"surabillsszA@gmail.com","created_at":"2016-10-26T11:33:41.000Z","modified_at":null,"deleted_at":null},{"id":24,"app_id":1,"email":"surabillsszA@gmail.com","created_at":"2016-10-26T11:58:14.000Z","modified_at":null,"deleted_at":null},{"id":25,"app_id":1,"email":"surabillsszA@gmail.com","created_at":null,"modified_at":null,"deleted_at":null}]}}},"contextString":"[output] [emails.js:30] 2016-10-26T07:08:57.427Z ","argsString":"{\n \"resultCode\": \"20000\",\n \"resultDescription\": \"Success\",\n \"data\": {\n \"user_id\": [\n {\n \"id\": 2,\n \"app_id\": 1,\n \"email\": \"deathbill99@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:21.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 5,\n \"app_id\": 1,\n \"email\": \"surabillzA@gmail.com\",\n \"created_at\": null,\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 6,\n \"app_id\": 1,\n \"email\": \"surabil5lz@gmail.com\",\n \"created_at\": \"2016-10-25T09:57:31.000Z\",\n \"modified_at\": \"2016-10-25T09:57:24.000Z\",\n \"deleted_at\": null\n },\n {\n \"id\": 10,\n \"app_id\": 1,\n \"email\": \"surabillsszA@gmail.com\",\n \"created_at\": \"2016-10-25T16:00:10.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 11,\n \"app_id\": 1,\n \"email\": \"surabillsszA@gmail.com\",\n \"created_at\": null,\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 12,\n \"app_id\": 1,\n \"email\": \"surabillsszA@gmail.com\",\n \"created_at\": \"2016-10-25T16:08:10.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 13,\n \"app_id\": 1,\n \"email\": \"surabillsszA@gmail.com\",\n \"created_at\": \"2016-10-25T16:08:59.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 14,\n \"app_id\": 1,\n \"email\": \"surabillsszA@gmail.com\",\n \"created_at\": \"2016-10-25T16:09:42.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 15,\n \"app_id\": 1,\n \"email\": \"surabillsszA@gmail.com\",\n \"created_at\": \"2016-10-25T16:11:23.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 16,\n \"app_id\": 1,\n \"email\": \"surabillsszA@gmail.com\",\n \"created_at\": \"2016-10-25T16:11:33.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 17,\n \"app_id\": 1,\n \"email\": \"surabillsszA@gmail.com\",\n \"created_at\": \"2016-10-25T16:12:06.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 18,\n \"app_id\": 1,\n \"email\": \"surabillsszA@gmail.com\",\n \"created_at\": \"2016-10-25T16:18:41.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 19,\n \"app_id\": 1,\n \"email\": \"surabillsszA@gmail.com\",\n \"created_at\": \"2016-10-25T16:18:59.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 20,\n \"app_id\": 1,\n \"email\": \"surabillsszA@gmail.com\",\n \"created_at\": \"2016-10-25T16:24:07.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 21,\n \"app_id\": 1,\n \"email\": \"surabillsszA@gmail.com\",\n \"created_at\": \"2016-10-26T11:33:41.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 24,\n \"app_id\": 1,\n \"email\": \"surabillsszA@gmail.com\",\n \"created_at\": \"2016-10-26T11:58:14.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 25,\n \"app_id\": 1,\n \"email\": \"surabillsszA@gmail.com\",\n \"created_at\": null,\n \"modified_at\": null,\n \"deleted_at\": null\n }\n ]\n }\n}","message":"[output] [emails.js:30] 2016-10-26T07:08:57.427Z {\n \"resultCode\": \"20000\",\n \"resultDescription\": \"Success\",\n \"data\": {\n \"user_id\": [\n {\n \"id\": 2,\n \"app_id\": 1,\n \"email\": \"deathbill99@gmail.com\",\n \"created_at\": \"2016-10-21T10:42:21.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 5,\n \"app_id\": 1,\n \"email\": \"surabillzA@gmail.com\",\n \"created_at\": null,\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 6,\n \"app_id\": 1,\n \"email\": \"surabil5lz@gmail.com\",\n \"created_at\": \"2016-10-25T09:57:31.000Z\",\n \"modified_at\": \"2016-10-25T09:57:24.000Z\",\n \"deleted_at\": null\n },\n {\n \"id\": 10,\n \"app_id\": 1,\n \"email\": \"surabillsszA@gmail.com\",\n \"created_at\": \"2016-10-25T16:00:10.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 11,\n \"app_id\": 1,\n \"email\": \"surabillsszA@gmail.com\",\n \"created_at\": null,\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 12,\n \"app_id\": 1,\n \"email\": \"surabillsszA@gmail.com\",\n \"created_at\": \"2016-10-25T16:08:10.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 13,\n \"app_id\": 1,\n \"email\": \"surabillsszA@gmail.com\",\n \"created_at\": \"2016-10-25T16:08:59.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 14,\n \"app_id\": 1,\n \"email\": \"surabillsszA@gmail.com\",\n \"created_at\": \"2016-10-25T16:09:42.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 15,\n \"app_id\": 1,\n \"email\": \"surabillsszA@gmail.com\",\n \"created_at\": \"2016-10-25T16:11:23.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 16,\n \"app_id\": 1,\n \"email\": \"surabillsszA@gmail.com\",\n \"created_at\": \"2016-10-25T16:11:33.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 17,\n \"app_id\": 1,\n \"email\": \"surabillsszA@gmail.com\",\n \"created_at\": \"2016-10-25T16:12:06.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 18,\n \"app_id\": 1,\n \"email\": \"surabillsszA@gmail.com\",\n \"created_at\": \"2016-10-25T16:18:41.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 19,\n \"app_id\": 1,\n \"email\": \"surabillsszA@gmail.com\",\n \"created_at\": \"2016-10-25T16:18:59.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 20,\n \"app_id\": 1,\n \"email\": \"surabillsszA@gmail.com\",\n \"created_at\": \"2016-10-25T16:24:07.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 21,\n \"app_id\": 1,\n \"email\": \"surabillsszA@gmail.com\",\n \"created_at\": \"2016-10-26T11:33:41.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 24,\n \"app_id\": 1,\n \"email\": \"surabillsszA@gmail.com\",\n \"created_at\": \"2016-10-26T11:58:14.000Z\",\n \"modified_at\": null,\n \"deleted_at\": null\n },\n {\n \"id\": 25,\n \"app_id\": 1,\n \"email\": \"surabillsszA@gmail.com\",\n \"created_at\": null,\n \"modified_at\": null,\n \"deleted_at\": null\n }\n ]\n }\n}"} |
@@ -0,0 +1 @@ | @@ -0,0 +1 @@ | ||
1 | +{"dates":{"1476896400000":["logs\\2016\\Oct\\20_oct_16.log.json"],"1476982800000":["logs\\2016\\Oct\\21_oct_16.log.json"],"1477328400000":["logs\\2016\\Oct\\25_oct_16.log.json"],"1477414800000":["logs\\2016\\Oct\\26_oct_16.log.json","logs\\2016\\Oct\\26_oct_16.info.json"]}} | ||
0 | \ No newline at end of file | 2 | \ No newline at end of file |
@@ -0,0 +1,38 @@ | @@ -0,0 +1,38 @@ | ||
1 | +{ | ||
2 | + "name": "webmail", | ||
3 | + "version": "1.0.0", | ||
4 | + "main": "server/server.js", | ||
5 | + "scripts": { | ||
6 | + "lint": "eslint .", | ||
7 | + "start": "node .", | ||
8 | + "posttest": "npm run lint && nsp check" | ||
9 | + }, | ||
10 | + "dependencies": { | ||
11 | + "compression": "^1.0.3", | ||
12 | + "cors": "^2.5.2", | ||
13 | + "helmet": "^1.3.0", | ||
14 | + "loopback": "^2.22.0", | ||
15 | + "loopback-boot": "^2.6.5", | ||
16 | + "loopback-component-explorer": "^2.4.0", | ||
17 | + "loopback-connector-mysql": "^2.4.0", | ||
18 | + "loopback-datasource-juggler": "^2.39.0", | ||
19 | + "node-yaml-config": "0.0.4", | ||
20 | + "nodemailer": "^2.6.4", | ||
21 | + "nodemailer-smtp-transport": "^2.7.2", | ||
22 | + "scribe-js": "^2.0.4", | ||
23 | + "serve-favicon": "^2.0.1", | ||
24 | + "strong-error-handler": "^1.0.1", | ||
25 | + "unirest": "^0.5.1" | ||
26 | + }, | ||
27 | + "devDependencies": { | ||
28 | + "eslint": "^2.13.1", | ||
29 | + "eslint-config-loopback": "^4.0.0", | ||
30 | + "nsp": "^2.1.0" | ||
31 | + }, | ||
32 | + "repository": { | ||
33 | + "type": "", | ||
34 | + "url": "" | ||
35 | + }, | ||
36 | + "license": "UNLICENSED", | ||
37 | + "description": "webmail" | ||
38 | +} |
@@ -0,0 +1,23 @@ | @@ -0,0 +1,23 @@ | ||
1 | +{ | ||
2 | + "restApiRoot": "/api", | ||
3 | + "host": "0.0.0.0", | ||
4 | + "port": 3037, | ||
5 | + "remoting": { | ||
6 | + "context": false, | ||
7 | + "rest": { | ||
8 | + "normalizeHttpPath": false, | ||
9 | + "xml": false | ||
10 | + }, | ||
11 | + "json": { | ||
12 | + "strict": false, | ||
13 | + "limit": "100kb" | ||
14 | + }, | ||
15 | + "urlencoded": { | ||
16 | + "extended": true, | ||
17 | + "limit": "100kb" | ||
18 | + }, | ||
19 | + "cors": false, | ||
20 | + "handleErrors": false | ||
21 | + }, | ||
22 | + "legacyExplorer": false | ||
23 | +} |
@@ -0,0 +1,16 @@ | @@ -0,0 +1,16 @@ | ||
1 | +{ | ||
2 | + "db": { | ||
3 | + "name": "db", | ||
4 | + "connector": "memory" | ||
5 | + }, | ||
6 | + "mysql": { | ||
7 | + "host": "localhost", | ||
8 | + "port": 3306, | ||
9 | + "url": "", | ||
10 | + "database": "emails", | ||
11 | + "password": "", | ||
12 | + "name": "mysql", | ||
13 | + "user": "root", | ||
14 | + "connector": "mysql" | ||
15 | + } | ||
16 | +} |
@@ -0,0 +1,50 @@ | @@ -0,0 +1,50 @@ | ||
1 | +{ | ||
2 | + "initial:before": { | ||
3 | + "loopback#favicon": {} | ||
4 | + }, | ||
5 | + "initial": { | ||
6 | + "compression": {}, | ||
7 | + "cors": { | ||
8 | + "params": { | ||
9 | + "origin": true, | ||
10 | + "credentials": true, | ||
11 | + "maxAge": 86400 | ||
12 | + } | ||
13 | + }, | ||
14 | + "helmet#xssFilter": {}, | ||
15 | + "helmet#frameguard": { | ||
16 | + "params": [ | ||
17 | + "deny" | ||
18 | + ] | ||
19 | + }, | ||
20 | + "helmet#hsts": { | ||
21 | + "params": { | ||
22 | + "maxAge": 0, | ||
23 | + "includeSubdomains": true | ||
24 | + } | ||
25 | + }, | ||
26 | + "helmet#hidePoweredBy": {}, | ||
27 | + "helmet#ieNoOpen": {}, | ||
28 | + "helmet#noSniff": {}, | ||
29 | + "helmet#noCache": { | ||
30 | + "enabled": false | ||
31 | + } | ||
32 | + }, | ||
33 | + "session": {}, | ||
34 | + "auth": {}, | ||
35 | + "parse": {}, | ||
36 | + "routes": { | ||
37 | + "loopback#rest": { | ||
38 | + "paths": [ | ||
39 | + "${restApiRoot}" | ||
40 | + ] | ||
41 | + } | ||
42 | + }, | ||
43 | + "files": {}, | ||
44 | + "final": { | ||
45 | + "loopback#urlNotFound": {} | ||
46 | + }, | ||
47 | + "final:after": { | ||
48 | + "strong-error-handler": {} | ||
49 | + } | ||
50 | +} |
@@ -0,0 +1,43 @@ | @@ -0,0 +1,43 @@ | ||
1 | +{ | ||
2 | + "_meta": { | ||
3 | + "sources": [ | ||
4 | + "loopback/common/models", | ||
5 | + "loopback/server/models", | ||
6 | + "../common/models", | ||
7 | + "./models" | ||
8 | + ], | ||
9 | + "mixins": [ | ||
10 | + "loopback/common/mixins", | ||
11 | + "loopback/server/mixins", | ||
12 | + "../common/mixins", | ||
13 | + "./mixins" | ||
14 | + ] | ||
15 | + }, | ||
16 | + "User": { | ||
17 | + "dataSource": "db" | ||
18 | + }, | ||
19 | + "AccessToken": { | ||
20 | + "dataSource": "db", | ||
21 | + "public": false | ||
22 | + }, | ||
23 | + "ACL": { | ||
24 | + "dataSource": "db", | ||
25 | + "public": false | ||
26 | + }, | ||
27 | + "RoleMapping": { | ||
28 | + "dataSource": "db", | ||
29 | + "public": false | ||
30 | + }, | ||
31 | + "Role": { | ||
32 | + "dataSource": "db", | ||
33 | + "public": false | ||
34 | + }, | ||
35 | + "emailsenter": { | ||
36 | + "dataSource": "mysql", | ||
37 | + "public": true | ||
38 | + }, | ||
39 | + "emails": { | ||
40 | + "dataSource": "mysql", | ||
41 | + "public": true | ||
42 | + } | ||
43 | +} |
@@ -0,0 +1,34 @@ | @@ -0,0 +1,34 @@ | ||
1 | +'use strict'; | ||
2 | + | ||
3 | +var express = require('express'); | ||
4 | +var scribe = require('scribe-js')(); | ||
5 | +var loopback = require('loopback'); | ||
6 | +var boot = require('loopback-boot'); | ||
7 | +var console = process.console; | ||
8 | + | ||
9 | +var app = module.exports = loopback(); | ||
10 | + | ||
11 | +app.start = function() { | ||
12 | + // start the web server | ||
13 | + return app.listen(function() { | ||
14 | + app.emit('started'); | ||
15 | + var baseUrl = app.get('url').replace(/\/$/, ''); | ||
16 | + console.log('Web server listening at: %s', baseUrl); | ||
17 | + if (app.get('loopback-component-explorer')) { | ||
18 | + var explorerPath = app.get('loopback-component-explorer').mountPath; | ||
19 | + console.log('Browse your REST API at %s%s', baseUrl, explorerPath); | ||
20 | + } | ||
21 | + }); | ||
22 | +}; | ||
23 | + | ||
24 | +// Bootstrap the application, configure models, datasources and middleware. | ||
25 | +// Sub-apps like REST API are mounted via boot scripts. | ||
26 | +boot(app, __dirname, function(err) { | ||
27 | + if (err) throw err; | ||
28 | + | ||
29 | + // start the server if `$ node server.js` | ||
30 | + if (require.main === module) | ||
31 | + app.start(); | ||
32 | +}); | ||
33 | +app.use(scribe.express.logger()); | ||
34 | +app.use('/logs', scribe.webPanel()); |