Skip to content

Commit

Permalink
trying to fix test run on github
Browse files Browse the repository at this point in the history
  • Loading branch information
mbruin-NR committed Oct 24, 2024
1 parent 85e917c commit 9a2be22
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -274,14 +274,14 @@ - (void) testAutoCollectedLogs {
}];

// Three messages should reach the remote log file for upload.
NSLog(@"NSLog Test \n");
NSLog(@"NSLog Test \n\n");
os_log_t customLog = os_log_create("com.agent.tests", "logTest");
// Log messages at different levels
os_log(customLog, "This is a default os_log message.");
os_log_info(customLog, "This is an info os_log message.");
os_log_debug(customLog, "This is a debug os_log message.");
os_log_error(customLog, "This is an error os_log message.");
os_log_fault(customLog, "This is a fault os_log message.");
os_log(customLog, "This is a default os_log message.\n");
os_log_info(customLog, "This is an info os_log message.\n");
os_log_debug(customLog, "This is a debug os_log message.\n");
os_log_error(customLog, "This is an error os_log message.\n");
os_log_fault(customLog, "This is a fault os_log message.\n");

XCTestExpectation *delayExpectation2 = [self expectationWithDescription:@"Waiting for Log Queue"];

Expand Down

0 comments on commit 9a2be22

Please sign in to comment.