aboutsummaryrefslogtreecommitdiffstats
path: root/container-search/src/main/java/com/yahoo/search/query/profile/QueryProfileProperties.java
diff options
context:
space:
mode:
authorJon Bratseth <bratseth@gmail.com>2022-05-09 12:37:14 +0200
committerJon Bratseth <bratseth@gmail.com>2022-05-09 12:37:14 +0200
commit8ac835c8d45b538c36be97ca3de545aa73c9d29d (patch)
treec0b511602ba1de4dda2f28307860226ab9093b23 /container-search/src/main/java/com/yahoo/search/query/profile/QueryProfileProperties.java
parent032aaa3611dd82bd9eaf2366c54babb47f81a9aa (diff)
Output input default values in rank properties
Diffstat (limited to 'container-search/src/main/java/com/yahoo/search/query/profile/QueryProfileProperties.java')
-rw-r--r--container-search/src/main/java/com/yahoo/search/query/profile/QueryProfileProperties.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/container-search/src/main/java/com/yahoo/search/query/profile/QueryProfileProperties.java b/container-search/src/main/java/com/yahoo/search/query/profile/QueryProfileProperties.java
index 19e0e441359..abd23c1822d 100644
--- a/container-search/src/main/java/com/yahoo/search/query/profile/QueryProfileProperties.java
+++ b/container-search/src/main/java/com/yahoo/search/query/profile/QueryProfileProperties.java
@@ -147,7 +147,7 @@ public class QueryProfileProperties extends Properties {
private String toShortString(Object value) {
if ( ! (value instanceof Tensor)) return value.toString();
- return ((Tensor)value).toShortString();
+ return ((Tensor)value).toAbbreviatedString();
}
private Object convertByType(CompoundName name, Object value, Map<String, String> context) {