File tree Expand file tree Collapse file tree
runtime-light/stdlib/confdata Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1010#include " runtime-light/coroutine/task.h"
1111#include " runtime-light/k2-platform/k2-api.h"
1212#include " runtime-light/stdlib/confdata/confdata-constants.h"
13- #include " runtime-light/stdlib/diagnostics/logs.h"
1413
1514inline bool f$is_confdata_loaded() noexcept {
1615 return k2::component_access (kphp::confdata::COMPONENT_NAME ) == k2::errno_ok;
@@ -21,6 +20,5 @@ kphp::coro::task<mixed> f$confdata_get_value(string key) noexcept;
2120kphp::coro::task<array<mixed>> f$confdata_get_values_by_any_wildcard(string wildcard) noexcept ;
2221
2322inline kphp::coro::task<array<mixed>> f$confdata_get_values_by_predefined_wildcard(string wildcard) noexcept {
24- kphp::log::info (" k2-confdata doesn't support predefined wildcard optimization. wildcard: {}" , wildcard.c_str ());
2523 co_return co_await f$confdata_get_values_by_any_wildcard (std::move (wildcard));
2624}
You can’t perform that action at this time.
0 commit comments