[NUI] Add Animation Finished callback debug log temporarily
authorDongsug Song <dongsug.song@samsung.com>
Tue, 17 Nov 2020 07:26:17 +0000 (16:26 +0900)
committerdongsug-song <35130733+dongsug-song@users.noreply.github.com>
Wed, 18 Nov 2020 01:34:16 +0000 (10:34 +0900)
src/Tizen.NUI/src/public/Animation.cs

index 682f2b4..a0c0cd7 100755 (executable)
@@ -1318,11 +1318,14 @@ namespace Tizen.NUI
 
         private void OnFinished(IntPtr data)
         {
+            Tizen.Log.Error("NUI", $"[TEMP]OnFinished() START");
             if (_animationFinishedEventHandler != null)
             {
                 //here we send all data to user event handlers
                 _animationFinishedEventHandler(this, null);
+                Tizen.Log.Error("NUI", $"[TEMP]OnFinished() handler is invoked! should be shown!");
             }
+            Tizen.Log.Error("NUI", $"[TEMP]OnFinished() END");
         }
 
         private void OnProgressReached(IntPtr data)