Error: No logs of type 'performance' found

Regards! I would be very grateful if you could help me with this error since I can’t get anything to guide me.

Problem when i try make test with iOS platform

in appium console:
[debug] [W3C (91effdbd)] Encountered internal error running command: Error: No logs of type ‘performance’ found.
[debug] [W3C (91effdbd)] at XCUITestDriver.extractLogs (/usr/local/lib/node_modules/appium/node_modules/appium-ios-driver/lib/commands/logging.js:24:9)
[debug] [W3C (91effdbd)] at Object.getter (/usr/local/lib/node_modules/appium/node_modules/appium-ios-driver/lib/commands/logging.js:38:40)
[debug] [W3C (91effdbd)] at XCUITestDriver.getLog (/usr/local/lib/node_modules/appium/node_modules/appium-base-driver/lib/basedriver/commands/log.js:35:48)

in wdio.log

2020-07-22T16:38:36.728Z ERROR webdriver: Request failed due to unknown error: An unknown server-side error occurred while processing the command. Original error: No logs of type ‘performance’ found.

my wdio.local.mobile.conf.js

const {
join
} = require(‘path’);
const merge = require(‘deepmerge’)
const wdioConfig = require(’…’)

exports.config = merge(wdioConfig.config, {
runner: ‘local’,
hostname: ‘localhost’,
port: 4723,
path: ‘/wd/hub’,
services: [‘appium’],
appium: {
logPath: ‘./test/logs’,
args: {
address: ‘127.0.0.1’,
commandTimeout: ‘10000’,
debugLogSpacing: true,
relaxedSecurity: true,
sessionOverride: true
}
},
isAI:true,
capabilities: [{
app: join(process.cwd(), ‘…’),
automationName: “…”,
platformName:“IOS”,
platformVersion: “13.6”,
deviceName: ‘iPhone 8’,
orientation: ‘PORTRAIT’,
maxInstances: 1,
noReset: true,
fullReset :false,
}],
androidIdPrefix: ‘android:id/’,
}, {
clone: false
})