commented out logs

This commit is contained in:
bill bittner 2018-06-25 18:51:54 -07:00
parent a8cfbd3c9e
commit 6ee72dabbb
3 changed files with 4 additions and 4 deletions

View file

@ -12,8 +12,8 @@ const serveAsset = ({ headers, ip, originalUrl, params: { claimName, claimId } }
// send google analytics // send google analytics
sendGAServeEvent(headers, ip, originalUrl); sendGAServeEvent(headers, ip, originalUrl);
// log the request data for debugging // log the request data for debugging
logRequestData(null, claimName, null, claimId); // logRequestData(null, claimName, null, claimId);
// get the claim Id and then serdve the asset // get the claim Id and then serve the asset
getClaimIdAndServeAsset(null, null, claimName, claimId, originalUrl, ip, res); getClaimIdAndServeAsset(null, null, claimName, claimId, originalUrl, ip, res);
}; };

View file

@ -39,7 +39,7 @@ const serveByClaim = (req, res) => {
// send google analytics // send google analytics
sendGAServeEvent(headers, ip, originalUrl); sendGAServeEvent(headers, ip, originalUrl);
// log the request data for debugging // log the request data for debugging
logRequestData(requestType, claimName, null, null); // logRequestData(requestType, claimName, null, null);
// get the claim Id and then serve the asset // get the claim Id and then serve the asset
getClaimIdAndServeAsset(null, null, claimName, null, originalUrl, ip, res); getClaimIdAndServeAsset(null, null, claimName, null, originalUrl, ip, res);
}; };

View file

@ -51,7 +51,7 @@ const serverByIdentifierAndClaim = (req, res) => {
// send google analytics // send google analytics
sendGAServeEvent(headers, ip, originalUrl); sendGAServeEvent(headers, ip, originalUrl);
// log the request data for debugging // log the request data for debugging
logRequestData(requestType, claimName, channelName, claimId); // logRequestData(requestType, claimName, channelName, claimId);
// get the claim Id and then serve the asset // get the claim Id and then serve the asset
getClaimIdAndServeAsset(channelName, channelClaimId, claimName, claimId, originalUrl, ip, res); getClaimIdAndServeAsset(channelName, channelClaimId, claimName, claimId, originalUrl, ip, res);
}; };