From 67c2d7c01c43121be8df3d61b9c8d902904df480 Mon Sep 17 00:00:00 2001 From: puro Date: Fri, 29 Mar 2019 05:17:10 +0900 Subject: [PATCH] [Tizen] Added log for check start of textscrollx Change-Id: Ic1f2de6e8636e2d84a6cbf40960721cdd2fc14bd --- dali-toolkit/internal/text/text-scroller.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dali-toolkit/internal/text/text-scroller.cpp b/dali-toolkit/internal/text/text-scroller.cpp index ed3b0c0..20a308c 100644 --- a/dali-toolkit/internal/text/text-scroller.cpp +++ b/dali-toolkit/internal/text/text-scroller.cpp @@ -340,7 +340,7 @@ void TextScroller::AutoScrollAnimationFinished( Dali::Animation& animation ) void TextScroller::StartScrolling( Actor scrollingTextActor, float scrollAmount, float scrollDuration, int loopCount ) { - DALI_LOG_INFO( gLogFilter, Debug::Verbose, "TextScroller::StartScrolling scrollAmount[%f] scrollDuration[%f], loop[%d] speed[%d]\n", scrollAmount, scrollDuration, loopCount, mScrollSpeed ); + DALI_LOG_RELEASE_INFO("TextScroller::StartScrolling scrollAmount[%f] scrollDuration[%f], loop[%d] speed[%d]\n", scrollAmount, scrollDuration, loopCount, mScrollSpeed ); mScrollAnimation = Animation::New( scrollDuration ); mScrollAnimation.AnimateTo( Property( scrollingTextActor, mScrollDeltaIndex ), scrollAmount, TimePeriod( mLoopDelay, scrollDuration ) ); -- 2.7.4