aboutsummaryrefslogtreecommitdiffstats
path: root/background_scripts
diff options
context:
space:
mode:
Diffstat (limited to 'background_scripts')
-rw-r--r--background_scripts/completion.coffee2
-rw-r--r--background_scripts/completion_engines.coffee2
2 files changed, 2 insertions, 2 deletions
diff --git a/background_scripts/completion.coffee b/background_scripts/completion.coffee
index 4fa91b9d..ccb5e4e6 100644
--- a/background_scripts/completion.coffee
+++ b/background_scripts/completion.coffee
@@ -474,7 +474,7 @@ class SearchEngineCompleter
# adding further suggestions.
if queryTerms.length == 0 or cachedSuggestions? or not haveCompletionEngine
if cachedSuggestions?
- console.log "using cached suggestions"
+ console.log "using cached suggestions:", query
suggestions.push cachedSuggestions.map(mkSuggestion)...
return onComplete suggestions, { filter }
diff --git a/background_scripts/completion_engines.coffee b/background_scripts/completion_engines.coffee
index ac5c86aa..638d7f60 100644
--- a/background_scripts/completion_engines.coffee
+++ b/background_scripts/completion_engines.coffee
@@ -210,7 +210,7 @@ CompletionEngines =
true
if reusePreviousSuggestions
- console.log "reuse previous query", @mostRecentQuery if @debug
+ console.log "reuse previous query:", @mostRecentQuery if @debug
@mostRecentQuery = queryTerms.join " "
return callback @completionCache.set completionCacheKey, @mostRecentSuggestions