I have used below code which is working perfectly in Appium but not working in Appium Studio please add this future to appium studio, This one is very important to me.
List<LogEntry> logEntries = appiumDriver.manage().logs().get("logcat").filter(Level.ALL);
File logFile = new File("App\\AdbLogcat.txt");
PrintWriter log_file_writer = new PrintWriter(logFile);
log_file_writer.println(logEntries.get(0));
Getting error message as below:
org.openqa.selenium.UnsupportedCommandException: unknown command (Unknown command) (WARNING: The server did not provide any stacktrace information)