We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 302f075 commit 0249710Copy full SHA for 0249710
src/logs/log-buffer.ts
@@ -193,7 +193,17 @@ export class LogBuffer implements StepLogRecorder {
193
}
194
195
if (entry.level >= Level.ERROR) {
196
- return !entry.subsystem.startsWith('com.apple.'); // && !entry.msg.includes('(CFNetwork)');
+ if (!entry.subsystem && !entry.category) {
197
+ if (/^Connection (?:\d+|for <APSConnection)/.test(entry.msg)) {
198
+ return false;
199
+ }
200
201
+
202
+ if (entry.subsystem.startsWith('com.apple.')) {
203
204
205
206
+ return true;
207
208
209
return false;
0 commit comments