Skip to content

Commit

Permalink
Change console.log to console.info and use substitution string
Browse files Browse the repository at this point in the history
  • Loading branch information
louischan-oursky committed Jan 14, 2025
1 parent 5878871 commit 8143b95
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion portal/src/graphql/portal/Authenticated.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ export async function configureAuthgear(
options: ConfigureAuthgearOptions
): Promise<void> {
// eslint-disable-next-line no-console -- Output the session type to console for easier debugging.
console.log("authgear: sessionType =", options.sessionType);
console.info("authgear: sessionType = %s", options.sessionType);
await authgear.configure({
sessionType: options.sessionType,
clientID: options.clientID,
Expand Down

0 comments on commit 8143b95

Please sign in to comment.