commented out logs
This commit is contained in:
parent
a8cfbd3c9e
commit
6ee72dabbb
3 changed files with 4 additions and 4 deletions
|
@ -12,8 +12,8 @@ const serveAsset = ({ headers, ip, originalUrl, params: { claimName, claimId } }
|
|||
// send google analytics
|
||||
sendGAServeEvent(headers, ip, originalUrl);
|
||||
// log the request data for debugging
|
||||
logRequestData(null, claimName, null, claimId);
|
||||
// get the claim Id and then serdve the asset
|
||||
// logRequestData(null, claimName, null, claimId);
|
||||
// get the claim Id and then serve the asset
|
||||
getClaimIdAndServeAsset(null, null, claimName, claimId, originalUrl, ip, res);
|
||||
};
|
||||
|
||||
|
|
|
@ -39,7 +39,7 @@ const serveByClaim = (req, res) => {
|
|||
// send google analytics
|
||||
sendGAServeEvent(headers, ip, originalUrl);
|
||||
// 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
|
||||
getClaimIdAndServeAsset(null, null, claimName, null, originalUrl, ip, res);
|
||||
};
|
||||
|
|
|
@ -51,7 +51,7 @@ const serverByIdentifierAndClaim = (req, res) => {
|
|||
// send google analytics
|
||||
sendGAServeEvent(headers, ip, originalUrl);
|
||||
// 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
|
||||
getClaimIdAndServeAsset(channelName, channelClaimId, claimName, claimId, originalUrl, ip, res);
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue