Skip to content

Commit

Permalink
msal suppress info/debug messages (#871)
Browse files Browse the repository at this point in the history
  • Loading branch information
777arc committed Apr 23, 2024
1 parent 1f2bd5b commit 8ed14b1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions client/src/auth/auth-config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ export const msalConfig = (config) => {
console.error(message);
return;
case LogLevel.Info:
console.info(message);
//console.info(message);
return;
case LogLevel.Verbose:
console.debug(message);
//console.debug(message);
return;
case LogLevel.Warning:
console.warn(message);
Expand Down

0 comments on commit 8ed14b1

Please sign in to comment.