Added Test environment to environments which display the log entries in the browser console.

This commit is contained in:
Leah Schumann 2024-03-06 07:36:16 -05:00
parent 72b4c166c8
commit 28b0ddfb0e

View file

@ -42,7 +42,8 @@ export class Logger {
// If running locally or in the Dev environment show the log entries in the console.
if (
applicationConfig.CURRENT_ENVIRONMENT === "Localhost" ||
applicationConfig.CURRENT_ENVIRONMENT === "Dev"
applicationConfig.CURRENT_ENVIRONMENT === "Dev" ||
applicationConfig.CURRENT_ENVIRONMENT === "Test"
) {
console.log(logEntry);
}