Skip to content

Commit

Permalink
single quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
hannah-macdonald1 committed Jan 8, 2025
1 parent 7f6990e commit 6083060
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/common/guards/auth/auth.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,9 +63,9 @@ export class AuthService {
if (upstreamResult !== null) {
await this.cacheManager.set(key, upstreamResult, this.cacheTime);
}
this.logger.log(`Upstream result: ${upstreamResult}`);
this.logger.log(`Upstream result: '${upstreamResult}'`);
} else {
this.logger.log(`Cache hit! Result: ${upstreamResult}`);
this.logger.log(`Cache hit! Result: '${upstreamResult}'`);
}
if (upstreamResult !== idir) {
return false;
Expand Down

0 comments on commit 6083060

Please sign in to comment.