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-19 15:03:54 +0000
commit2c4b4e1283cda6ee2d89d4decf8b8b756bb3f054 (patch)
treeaac841e0fd400009f66a776e1ef3aa6f01331093 /searchcore
parentcb3035a72c42053db2130084209e611f49d9b037 (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());
}
}