Skip to content
This repository has been archived by the owner on Nov 21, 2017. It is now read-only.

Commit

Permalink
Log the performer name in the ConsoleLoggingTracer, not the object it…
Browse files Browse the repository at this point in the history
…self.

Reviewers: O4 Material Motion Apple platform reviewers, O2 Material Motion, markwei

Reviewed By: O4 Material Motion Apple platform reviewers, O2 Material Motion, markwei

Tags: #material_motion

Differential Revision: http://codereview.cc/D1922
  • Loading branch information
jverkoey committed Nov 15, 2016
1 parent 47e126c commit 83ccadc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/MDMConsoleLoggingTracer.m
Expand Up @@ -71,8 +71,8 @@ - (void)didRemovePlanNamed:(NSString *)name from:(id)target {
NSLog(@"didRemovePlan named %@ from target: %@\n\n", name, target);
}

- (void)didCreatePerformer:(id<MDMPerforming>)performer for:(id)target {
NSLog(@"didCreatePerformer: %@ for: %@\n\n", performer, target);
- (void)didCreatePerformer:(NSObject<MDMPerforming> *)performer for:(id)target {
NSLog(@"didCreatePerformer: %@ for: %@\n\n", NSStringFromClass([performer class]), target);
}

@end

0 comments on commit 83ccadc

Please sign in to comment.