Skip to content

Commit

Permalink
fix: 🐛 logger format
Browse files Browse the repository at this point in the history
  • Loading branch information
apotdevin committed May 22, 2020
1 parent 57e7fb8 commit 7d7ef56
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion api/schemas/query/server/getServerAccounts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,9 @@ export const getServerAccounts = {
let ssoAccount = null;
if (macaroon && host && ssoVerified) {
logger.debug(
`Macaroon${cert && ', certificate'} and host found for SSO account`
`Macaroon${
cert ? ', certificate' : ''
} and host (${host}) found for SSO.`
);
ssoAccount = {
name: 'SSO Account',
Expand Down

0 comments on commit 7d7ef56

Please sign in to comment.