Transaction Response Time

Hello

Given I have the following simple test, which takes about 97 seconds to run on average and it does 3 note additions and 3 notes deletions, how to get appium or eclipse to log each transaction response time individually.

@Test
public void testUI()
{
RandomString rnd = new RandomString(5);

    //add 5 notes
    for(int i=0; i<3;i++)
    {
    driver.findElement(By.id("com.example.android.notepad:id/menu_add")).click();
    driver.findElement(By.id("com.example.android.notepad:id/note")).sendKeys(rnd.nextString());
    //com.example.android.notepad:id/menu_save
    driver.findElement(By.id("com.example.android.notepad:id/menu_save")).click();
    }
    
    //delete all notes
    //List<WebElement> myNotes = driver.findElements(By.id("android:id/text1"));

    int count = driver.findElements(By.id("android:id/text1")).size();
    while (count > 0)
    {
        
        driver.findElements(By.id("android:id/text1")).get(0).click();
        //com.example.android.notepad:id/menu_delete
        driver.findElement(By.id("com.example.android.notepad:id/menu_delete")).click();
        //driver.findElements(By.id("android:id/text1")).remove(0);
        count--;
    }