Skip to content

Commit

Permalink
Modify the local git username and email and delete the logs I added
Browse files Browse the repository at this point in the history
  • Loading branch information
fernandozw authored and toddtarsi committed Apr 25, 2024
1 parent dd80a60 commit 353e2f4
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -247,9 +247,7 @@ export default class DriverController extends BaseController {
},
}
): Promise<WebDriverExecutor> {
console.info('使用的server地址:' + server)
const browserName = browser === 'electron' ? 'chrome' : browser
console.info('使用的browserName:' + browserName)
console.info('Instantiating driver builder for ', browser)
const driverBuilder = await new Builder()
.withCapabilities({
Expand All @@ -260,7 +258,6 @@ export default class DriverController extends BaseController {
})
.usingServer(server)
.forBrowser(browserName)
console.info('使用的配置信息:' + JSON.stringify(capabilities))
console.debug('Building driver for ' + browser)
const driver = await retry(
async () => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@ export default class RecentProjectsController extends BaseController {
return true
}
get(): string[] {
console.debug('最近打开:' + this.session.store.get('recentProjects', []))
return this.session.store.get('recentProjects', [])
}
}

0 comments on commit 353e2f4

Please sign in to comment.