Is there a way to send name of test to appium server?

Is there a way to send additional information to appium server for logging purposes? Right now it’s only logging requests to and from the appium server. But I want to add the name of each test before it’s run. Can’t seem to find appium docs that cover this.

The only solution I could think of was to use the execute_script method on the driver, and pass in “console.log(‘my_test_name’);” as the script. This ends up creating a seemingly harmless POST request to the appium server, but at least it shows up in the logs, allowing me to distinguish between the different tests. But it doesn’t feel clean, and I would have to repeat this execute_script method in every single test (as opposed to doing some kind of a before hook prior to executing each test). It feels like a lot to achieve something seemingly simple.