aboutsummaryrefslogtreecommitdiffstats
path: root/searchlib/src/vespa/searchlib/predicate/predicate_range_expander.cpp
blob: 83449213cdc7492337358c2c7326e77af818f63e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Copyright Yahoo. 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);
}

}