Skip to content

Commit 33c5192

Browse files
fix: remove incorrect spam message
the message is shown every time when we want to show a line from device logs and we are with trace level
1 parent 7f708a4 commit 33c5192

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

lib/services/ios-log-filter.ts

+1-3
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,11 @@ export class IOSLogFilter implements Mobile.IPlatformLogFilter {
1313

1414
private partialLine: string = null;
1515

16-
constructor(private $logger: ILogger,
17-
private $loggingLevels: Mobile.ILoggingLevels) {
16+
constructor(private $loggingLevels: Mobile.ILoggingLevels) {
1817
}
1918

2019
public filterData(data: string, loggingOptions: Mobile.IDeviceLogOptions = <any>{}): string {
2120
const specifiedLogLevel = (loggingOptions.logLevel || '').toUpperCase();
22-
this.$logger.trace("Logging options", loggingOptions);
2321

2422
if (specifiedLogLevel !== this.$loggingLevels.info || !data) {
2523
return data;

0 commit comments

Comments
 (0)