summaryrefslogtreecommitdiffstats
path: root/container-search/src/main/java/com/yahoo/search/query/context
diff options
context:
space:
mode:
authorJon Bratseth <bratseth@gmail.com>2021-07-10 21:18:44 +0200
committerJon Bratseth <bratseth@gmail.com>2021-07-10 21:18:44 +0200
commit7e0fe7417136217d0b14534e8b78ef26a6887478 (patch)
treec95b85c2d72dc31393684decf9b1d4475e77e68b /container-search/src/main/java/com/yahoo/search/query/context
parent3c622e2a9ae7d0a46701c267972cac411ec3ca37 (diff)
Non-functional changes only
Diffstat (limited to 'container-search/src/main/java/com/yahoo/search/query/context')
-rw-r--r--container-search/src/main/java/com/yahoo/search/query/context/QueryContext.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/container-search/src/main/java/com/yahoo/search/query/context/QueryContext.java b/container-search/src/main/java/com/yahoo/search/query/context/QueryContext.java
index 1ba30275dc1..4fb9e1e9afa 100644
--- a/container-search/src/main/java/com/yahoo/search/query/context/QueryContext.java
+++ b/container-search/src/main/java/com/yahoo/search/query/context/QueryContext.java
@@ -38,10 +38,10 @@ public class QueryContext implements Cloneable {
owner.getModel().getExecution().trace().trace(message,traceLevel);
}
/**
- * Adds a key-value which will be logged to the access log for this query (by doing toString() on the value
+ * Adds a key-value which will be logged to the access log for this query (by doing toString() on the value).
* Multiple values may be set to the same key. A value cannot be removed once set.
*/
- public void logValue(String key,Object value) {
+ public void logValue(String key, Object value) {
owner.getModel().getExecution().trace().logValue(key, value.toString());
}