-
Notifications
You must be signed in to change notification settings - Fork 0
[validation service] How to suppress validation log on console #2
Copy link
Copy link
Open
Labels
Description
[validation service] How to suppress validation log on console
Change to suppress the log
- Comment out the
console.log()in the skeletonvalidate()function
diff --git a/backend/validationService.js b/backend/validationService.js
index f7c3ae8..ac9852b 100644
--- a/backend/validationService.js
+++ b/backend/validationService.js
@@ -215,7 +215,7 @@ else {
}
const validate = function validate(req, Connect, CurrentSession) {
let result;
- console.log('validate: ', req.headers['user-agent'], CurrentSession.ClientIntegrity.browserHash.toString('hex'));
+ //console.log('validate: ', req.headers['user-agent'], CurrentSession.ClientIntegrity.browserHash.toString('hex'));
switch (mode) {
case 'build':
result = 'validated';Reactions are currently unavailable