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 426de89 commit 79e0d4bCopy full SHA for 79e0d4b
Agent/Utilities/NRAutoLogCollector.m
@@ -51,10 +51,10 @@ + (BOOL) redirectStandardOutputAndError {
51
close(stderrPipe[1]); // Close the original write end of the stderr pipe
52
53
// Read from the pipes in background threads
54
- dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_BACKGROUND, 0), ^{
+ dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
55
[NRAutoLogCollector readAndLog:stdoutPipe[0]];
56
});
57
58
[NRAutoLogCollector readAndLog:stderrPipe[0]];
59
60
0 commit comments