aboutsummaryrefslogtreecommitdiffstats
path: root/searchlib/src/vespa/searchlib/predicate/predicate_range_expander.cpp
blob: 6ef713c92502de7160c68bc44351b70ee7faffc7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.


#include "predicate_range_expander.h"

#include <vespa/log/log.h>
LOG_SETUP(".predicate_range_expander");

namespace search::predicate {

void PredicateRangeExpander::debugLog(const char *fmt, const char *msg) {
    LOG(debug, fmt, msg);
}

}