Skip to content

Commit

Permalink
Expand debug logging for transitive rule failure case (#1248)
Browse files Browse the repository at this point in the history
  • Loading branch information
mlw committed Nov 30, 2023
1 parent 65c6602 commit 2216644
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Source/santad/SNTCompilerController.mm
Original file line number Diff line number Diff line change
Expand Up @@ -132,8 +132,8 @@ - (void)createTransitiveRule:(const Message &)esMsg
NSError *error = nil;
SNTFileInfo *fi = [[SNTFileInfo alloc] initWithEndpointSecurityFile:targetFile error:&error];
if (error) {
LOGD(@"Unable to create SNTFileInfo while attempting to create transitive rule. Path: %@",
@(targetFile->path.data));
LOGD(@"Unable to create SNTFileInfo while attempting to create transitive rule. Event: %d | Path: %@ | Error: %@",
(int)esMsg->event_type, @(targetFile->path.data), error);
return;
}

Expand Down

0 comments on commit 2216644

Please sign in to comment.