From 8067262ebfef2a8db76c36b3adee8c8d048cd35b Mon Sep 17 00:00:00 2001 From: brandon_withrow Date: Fri, 4 Aug 2017 13:40:18 -0700 Subject: [PATCH] Add log warning for missing keypath --- lottie-ios/Classes/Private/LOTAnimationView.m | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lottie-ios/Classes/Private/LOTAnimationView.m b/lottie-ios/Classes/Private/LOTAnimationView.m index 55b2fa1c10..27e5c3284a 100644 --- a/lottie-ios/Classes/Private/LOTAnimationView.m +++ b/lottie-ios/Classes/Private/LOTAnimationView.m @@ -317,6 +317,8 @@ [CATransaction setDisableActions:YES]; [_compContainer displayWithFrame:_compContainer.currentFrame forceUpdate:YES]; [CATransaction commit]; + } else { + NSLog(@"%s: Keypath Not Found: %@", __PRETTY_FUNCTION__, keypath); } }