Turn on verbose logging to debug flaky test cases

We have some flaky test cases that fail sometime only in nexus9,
turn on verbose logging to figure out the reason.

Bug: 22449592
Change-Id: I925c24c862f73955f71799e97f28e06c835d1e59
diff --git a/tests/tests/provider/AndroidTest.xml b/tests/tests/provider/AndroidTest.xml
index ae603a3..e3cea41 100644
--- a/tests/tests/provider/AndroidTest.xml
+++ b/tests/tests/provider/AndroidTest.xml
@@ -19,4 +19,22 @@
     <option name="cts-apk-installer:test-file-name" value="CtsProviderTestCases.apk" />
     <option name="run-command:run-command"
             value="ime enable com.android.cts.provider/.MockInputMethodService" />
-</configuration>
\ No newline at end of file
+
+    <option name="run-command:run-command"
+            value="setprop log.tag.CalendarProvider2 VERBOSE" />
+    <option name="run-command:run-command"
+            value="setprop log.tag.CalInstances VERBOSE" />
+    <option name="run-command:run-command"
+            value="setprop log.tag.RecurrenceProcessor VERBOSE" />
+    <option name="run-command:run-command"
+            value="setprop log.tag.CalendarCache VERBOSE" />
+
+    <option name="run-command:teardown-command"
+            value="setprop log.tag.CalendarProvider2 INFO" />
+    <option name="run-command:teardown-command"
+            value="setprop log.tag.CalInstances INFO" />
+    <option name="run-command:teardown-command"
+            value="setprop log.tag.RecurrenceProcessor INFO" />
+    <option name="run-command:teardown-command"
+            value="setprop log.tag.CalendarCache INFO" />
+</configuration>