Skip to content

Commit

Permalink
tune logs
Browse files Browse the repository at this point in the history
  • Loading branch information
mykola-mokhnach committed Oct 16, 2024
1 parent b85f93f commit e2438c3
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion lib/device-log/ios-simulator-log.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import _ from 'lodash';
import {SubProcess, exec} from 'teen_process';
import {util} from 'appium/support';
import { LineConsumingLog } from './line-consuming-log';
import type { Simulator } from 'appium-ios-simulator';
import type { AppiumLogger } from '@appium/types';
Expand Down Expand Up @@ -49,7 +50,8 @@ export class IOSSimulatorLog extends LineConsumingLog {
spawnArgs.push('--level', this.logLevel);
}
this.log.debug(
`Starting log capture for iOS Simulator with udid '${this.sim.udid}' using simctl`,
`Starting log capture for iOS Simulator with udid '${this.sim.udid}' ` +
`via simctl using the following arguments '${util.quote(spawnArgs)}'`
);
await this.cleanupObsoleteLogStreams();
try {
Expand Down

0 comments on commit e2438c3

Please sign in to comment.