aboutsummaryrefslogtreecommitdiffstats
path: root/searchcore
diff options
context:
space:
mode:
authorHåvard Pettersen <havardpe@oath.com>2021-05-19 15:03:54 +0000
committerHåvard Pettersen <havardpe@oath.com>2021-05-20 10:19:57 +0000
commit92a3acab963b40bd19183a0f4b43318cec26bf78 (patch)
treeac1654350e6ee5efac2631c0071945570cd9c08d /searchcore
parenta6babd7ec4b48975fc5d6f2994b91bf3bfd2052c (diff)
remove extra newlines
Diffstat (limited to 'searchcore')
-rw-r--r--searchcore/src/apps/verify_ranksetup/verify_ranksetup.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/searchcore/src/apps/verify_ranksetup/verify_ranksetup.cpp b/searchcore/src/apps/verify_ranksetup/verify_ranksetup.cpp
index 106b9bf4d24..853395be3e1 100644
--- a/searchcore/src/apps/verify_ranksetup/verify_ranksetup.cpp
+++ b/searchcore/src/apps/verify_ranksetup/verify_ranksetup.cpp
@@ -67,7 +67,7 @@ RankingExpressions make_expressions(const RankingExpressionsConfig &expressionsC
if (auto file = get_file(entry.fileref, myCfg)) {
expressions.add(entry.name, file.value());
} else {
- LOG(warning, "could not find file for ranking expression '%s' (ref:'%s')\n",
+ LOG(warning, "could not find file for ranking expression '%s' (ref:'%s')",
entry.name.c_str(), entry.fileref.c_str());
}
}
@@ -81,7 +81,7 @@ OnnxModels make_models(const OnnxModelsConfig &modelsCfg, const VerifyRanksetupC
model_list.emplace_back(entry.name, file.value());
OnnxModels::configure(entry, model_list.back());
} else {
- LOG(warning, "could not find file for onnx model '%s' (ref:'%s')\n",
+ LOG(warning, "could not find file for onnx model '%s' (ref:'%s')",
entry.name.c_str(), entry.fileref.c_str());
}
}