mirror of
https://github.com/dragonflydb/dragonfly.git
synced 2025-05-11 10:25:47 +02:00
fix(json_family): Remove std::endl during logging in ParseJsonPath method (#4363)
Signed-off-by: Stepan Bagritsevich <stefan@dragonflydb.io>
This commit is contained in:
parent
dc81594cd5
commit
6946820e56
1 changed files with 2 additions and 2 deletions
|
@ -97,7 +97,7 @@ ParseResult<WrappedJsonPath> ParseJsonPath(StringOrView path, JsonPathType path_
|
||||||
if (absl::GetFlag(FLAGS_jsonpathv2)) {
|
if (absl::GetFlag(FLAGS_jsonpathv2)) {
|
||||||
auto path_result = json::ParsePath(path.view());
|
auto path_result = json::ParsePath(path.view());
|
||||||
if (!path_result) {
|
if (!path_result) {
|
||||||
VLOG(1) << "Invalid Json path: " << path << ' ' << path_result.error() << std::endl;
|
VLOG(1) << "Invalid Json path: " << path << ' ' << path_result.error();
|
||||||
return nonstd::make_unexpected(kSyntaxErr);
|
return nonstd::make_unexpected(kSyntaxErr);
|
||||||
}
|
}
|
||||||
return WrappedJsonPath{std::move(path_result).value(), std::move(path), path_type};
|
return WrappedJsonPath{std::move(path_result).value(), std::move(path), path_type};
|
||||||
|
@ -105,7 +105,7 @@ ParseResult<WrappedJsonPath> ParseJsonPath(StringOrView path, JsonPathType path_
|
||||||
|
|
||||||
auto expr_result = ParseJsonPathAsExpression(path.view());
|
auto expr_result = ParseJsonPathAsExpression(path.view());
|
||||||
if (!expr_result) {
|
if (!expr_result) {
|
||||||
VLOG(1) << "Invalid Json path: " << path << ' ' << expr_result.error() << std::endl;
|
VLOG(1) << "Invalid Json path: " << path << ' ' << expr_result.error();
|
||||||
return nonstd::make_unexpected(kSyntaxErr);
|
return nonstd::make_unexpected(kSyntaxErr);
|
||||||
}
|
}
|
||||||
return WrappedJsonPath{std::move(expr_result).value(), std::move(path), path_type};
|
return WrappedJsonPath{std::move(expr_result).value(), std::move(path), path_type};
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue