Skip to content

Commit

Permalink
Fix debug logging
Browse files Browse the repository at this point in the history
  • Loading branch information
dickwolff committed May 13, 2024
1 parent b6fb7e7 commit 62de843
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/securityService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,7 @@ export class SecurityService {

const messageToLog = (additionalTabs ? '\t' : '') + `\t${message}`

if (Boolean(process.env.DEBUG_LOGGING) == true) {
if (process.env.DEBUG_LOGGING === "true") {
if (!progress) {
console.log(`[d] ${messageToLog}`);
}
Expand Down

0 comments on commit 62de843

Please sign in to comment.