We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7f708a4 commit 33c5192Copy full SHA for 33c5192
lib/services/ios-log-filter.ts
@@ -13,13 +13,11 @@ export class IOSLogFilter implements Mobile.IPlatformLogFilter {
13
14
private partialLine: string = null;
15
16
- constructor(private $logger: ILogger,
17
- private $loggingLevels: Mobile.ILoggingLevels) {
+ constructor(private $loggingLevels: Mobile.ILoggingLevels) {
18
}
19
20
public filterData(data: string, loggingOptions: Mobile.IDeviceLogOptions = <any>{}): string {
21
const specifiedLogLevel = (loggingOptions.logLevel || '').toUpperCase();
22
- this.$logger.trace("Logging options", loggingOptions);
23
24
if (specifiedLogLevel !== this.$loggingLevels.info || !data) {
25
return data;
0 commit comments