File tree Expand file tree Collapse file tree
libsql-server/src/auth/user_auth_strategies Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ pub struct Disabled {}
55
66impl UserAuthStrategy for Disabled {
77 fn authenticate ( & self , _context : UserAuthContext ) -> Result < Authenticated , AuthError > {
8- tracing:: info !( "executing disabled auth" ) ;
8+ tracing:: trace !( "executing disabled auth" ) ;
99
1010 Ok ( Authenticated :: Authorized ( Authorized {
1111 namespace : None ,
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ pub struct HttpBasic {
88
99impl UserAuthStrategy for HttpBasic {
1010 fn authenticate ( & self , context : UserAuthContext ) -> Result < Authenticated , AuthError > {
11- tracing:: info !( "executing http basic auth" ) ;
11+ tracing:: trace !( "executing http basic auth" ) ;
1212
1313 let param = parse_http_auth_header ( "basic" , & context. user_credential ) ?;
1414
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ pub struct Jwt {
1111
1212impl UserAuthStrategy for Jwt {
1313 fn authenticate ( & self , context : UserAuthContext ) -> Result < Authenticated , AuthError > {
14- tracing:: info !( "executing jwt auth" ) ;
14+ tracing:: trace !( "executing jwt auth" ) ;
1515
1616 let param = parse_http_auth_header ( "bearer" , & context. user_credential ) ?;
1717
You can’t perform that action at this time.
0 commit comments