Implement onSuggestionLaunched

Bug: 65065268
Test: manual
Change-Id: I3abbb7159f712c0f96f3435319f0bf7ec94f82f0
diff --git a/src/com/android/settings/intelligence/suggestions/SuggestionService.java b/src/com/android/settings/intelligence/suggestions/SuggestionService.java
index b8ccef0..630a219 100644
--- a/src/com/android/settings/intelligence/suggestions/SuggestionService.java
+++ b/src/com/android/settings/intelligence/suggestions/SuggestionService.java
@@ -47,6 +47,11 @@
                 .markSuggestionDismissed(this /* context */, id);
     }
 
+    @Override
+    public void onSuggestionLaunched(Suggestion suggestion) {
+        Log.d(TAG, "Suggestion launched" + suggestion.getId());
+    }
+
     public static SharedPreferences getSharedPrefs(Context context) {
         return context.getApplicationContext()
                 .getSharedPreferences(SHARED_PREF_FILENAME, Context.MODE_PRIVATE);