Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Simon
OpenLDAP
Commits
79960723
Commit
79960723
authored
Jun 11, 2020
by
Ondřej Kuzník
Browse files
ITS#7796 Move 'not indexed' messages to loglevel filter
parent
71560032
Changes
2
Hide whitespace changes
Inline
Side-by-side
servers/slapd/back-mdb/filterindex.c
View file @
79960723
...
...
@@ -650,7 +650,7 @@ presence_candidates(
if
(
rc
==
LDAP_INAPPROPRIATE_MATCHING
)
{
/* not indexed */
Debug
(
LDAP_DEBUG_
TRACE
,
Debug
(
LDAP_DEBUG_
FILTER
,
"<= mdb_presence_candidates: (%s) not indexed
\n
"
,
desc
->
ad_cname
.
bv_val
);
return
0
;
...
...
@@ -734,7 +734,7 @@ equality_candidates(
&
dbi
,
&
mask
,
&
prefix
);
if
(
rc
==
LDAP_INAPPROPRIATE_MATCHING
)
{
Debug
(
LDAP_DEBUG_
ANY
,
Debug
(
LDAP_DEBUG_
FILTER
,
"<= mdb_equality_candidates: (%s) not indexed
\n
"
,
ava
->
aa_desc
->
ad_cname
.
bv_val
);
return
0
;
...
...
@@ -850,7 +850,7 @@ approx_candidates(
&
dbi
,
&
mask
,
&
prefix
);
if
(
rc
==
LDAP_INAPPROPRIATE_MATCHING
)
{
Debug
(
LDAP_DEBUG_
ANY
,
Debug
(
LDAP_DEBUG_
FILTER
,
"<= mdb_approx_candidates: (%s) not indexed
\n
"
,
ava
->
aa_desc
->
ad_cname
.
bv_val
);
return
0
;
...
...
@@ -969,7 +969,7 @@ substring_candidates(
&
dbi
,
&
mask
,
&
prefix
);
if
(
rc
==
LDAP_INAPPROPRIATE_MATCHING
)
{
Debug
(
LDAP_DEBUG_
ANY
,
Debug
(
LDAP_DEBUG_
FILTER
,
"<= mdb_substring_candidates: (%s) not indexed
\n
"
,
sub
->
sa_desc
->
ad_cname
.
bv_val
);
return
0
;
...
...
@@ -1085,7 +1085,7 @@ inequality_candidates(
&
dbi
,
&
mask
,
&
prefix
);
if
(
rc
==
LDAP_INAPPROPRIATE_MATCHING
)
{
Debug
(
LDAP_DEBUG_
ANY
,
Debug
(
LDAP_DEBUG_
FILTER
,
"<= mdb_inequality_candidates: (%s) not indexed
\n
"
,
ava
->
aa_desc
->
ad_cname
.
bv_val
);
return
0
;
...
...
servers/slapd/back-wt/filterindex.c
View file @
79960723
...
...
@@ -53,7 +53,7 @@ presence_candidates(
if
(
rc
==
LDAP_INAPPROPRIATE_MATCHING
)
{
/* not indexed */
Debug
(
LDAP_DEBUG_
TRACE
,
Debug
(
LDAP_DEBUG_
FILTER
,
"<= wt_presence_candidates: (%s) not indexed
\n
"
,
desc
->
ad_cname
.
bv_val
);
return
0
;
...
...
@@ -135,7 +135,7 @@ equality_candidates(
&
mask
,
&
prefix
);
if
(
rc
==
LDAP_INAPPROPRIATE_MATCHING
)
{
Debug
(
LDAP_DEBUG_
ANY
,
Debug
(
LDAP_DEBUG_
FILTER
,
"<= wt_equality_candidates: (%s) not indexed
\n
"
,
ava
->
aa_desc
->
ad_cname
.
bv_val
);
return
0
;
...
...
@@ -254,7 +254,7 @@ approx_candidates(
&
mask
,
&
prefix
);
if
(
rc
==
LDAP_INAPPROPRIATE_MATCHING
)
{
Debug
(
LDAP_DEBUG_
ANY
,
Debug
(
LDAP_DEBUG_
FILTER
,
"<= wt_approx_candidates: (%s) not indexed
\n
"
,
ava
->
aa_desc
->
ad_cname
.
bv_val
);
return
0
;
...
...
@@ -385,7 +385,7 @@ substring_candidates(
&
mask
,
&
prefix
);
if
(
rc
==
LDAP_INAPPROPRIATE_MATCHING
)
{
Debug
(
LDAP_DEBUG_
ANY
,
Debug
(
LDAP_DEBUG_
FILTER
,
"<= wt_substring_candidates: (%s) not indexed
\n
"
,
sub
->
sa_desc
->
ad_cname
.
bv_val
);
return
0
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment