diff options
Diffstat (limited to 'src/state/session/index.tsx')
-rw-r--r-- | src/state/session/index.tsx | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/src/state/session/index.tsx b/src/state/session/index.tsx index aa8c94ebc..a452d6aa6 100644 --- a/src/state/session/index.tsx +++ b/src/state/session/index.tsx @@ -181,14 +181,10 @@ export function Provider({children}: React.PropsWithChildren<{}>) { const createAccount = React.useCallback<ApiContext['createAccount']>( async ({service, email, password, handle, inviteCode}: any) => { - logger.debug( - `session: creating account`, - { - service, - handle, - }, - logger.DebugContext.session, - ) + logger.info(`session: creating account`, { + service, + handle, + }) track('Try Create Account') const agent = new BskyAgent({service}) |