Skip to content
Snippets Groups Projects
Commit 1d58d5ea authored by ale's avatar ale
Browse files

Log unknown key prefixes

parent 50f71c34
No related branches found
No related tags found
No related merge requests found
......@@ -90,6 +90,7 @@ func (s *KeyLookupProxy) Lookup(ctx context.Context, key string) (interface{}, b
case strings.HasPrefix(key, "userdb/"):
return s.lookupUserdb(ctx, key[7:])
default:
log.Printf("unknown key %s", key)
return nil, false
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment