Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

can't write to logger.txt in production #69

Closed
hunfajalil-WalQalum opened this issue Jul 21, 2023 · 1 comment
Closed

can't write to logger.txt in production #69

hunfajalil-WalQalum opened this issue Jul 21, 2023 · 1 comment

Comments

@hunfajalil-WalQalum
Copy link

hunfajalil-WalQalum commented Jul 21, 2023

I am using google cloud functions for deployment. In production when card.charge(2) is trying to write on logger.txt which is not accesible in production. Beacause of that I am getting error in production. In local environment its runninh fine as it has access to logger.txt.
How can i stop it from writing to logger.txt?

@MilesTFox
Copy link

You need to edit node_modules/globalpayments-api/lib/src/Gateways/XmlGateway.js and comment out the contents of XmlGateway.prototype.log. This is a PCI compliance issue as well, as it saves the entire transaction including all credit card details to disk unencrypted.

Before:

 XmlGateway.prototype.log = function (text) {
        fs.appendFile('logger.txt', text + '\n', function (err) {
            if (err)
                throw err;
        });
    };

After:

 XmlGateway.prototype.log = function (text) {
        /*
        fs.appendFile('logger.txt', text + '\n', function (err) {
            if (err)
                throw err;
        });
        */
    };

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants