SAP-samples / btp-cap-multitenant-saas

Sample project that demonstrates how to setup a multitenant application for a Software-as-a-Service scenario, leveraging the Kyma and Cloud Foundry Runtimes of the SAP Business Technology Platform. Developers learn how to implement their own CAP (mtxs) based SaaS app including an SaaS API and integration with various essential SAP BTP service of...
Apache License 2.0
75 stars 38 forks source link

Replacement of "console.log" statements with "cds.log" in the project. #13

Closed alperdedeoglu closed 6 months ago

alperdedeoglu commented 7 months ago

Node.js standard console logs should be replaced with standard CDS Logs

console.log("Alper") // Not true

const LOG = cds.log('susaas').  // True
LOG.info ('whatever', you, 'like...')