Issue summary
Remove any console.log() statements in the frontend to avoid providing users information to potentially reverse engineer and break into SLURP.
Expected behavior
No external logging: console.log statements. Ideally, any important info or error logs should be added on the backend (Java servlets) or other logging system that is not visible externally.
Actual behavior
The current implementation contains many console.log statements (especially in the ViewTrips components).
Issue summary
Remove any
console.log()statements in the frontend to avoid providing users information to potentially reverse engineer and break into SLURP.Expected behavior
No external logging:
console.logstatements. Ideally, any important info or error logs should be added on the backend (Java servlets) or other logging system that is not visible externally.Actual behavior
The current implementation contains many
console.logstatements (especially in the ViewTrips components).