add logs
diff --git a/src/animation/linear_animation_instance.cpp b/src/animation/linear_animation_instance.cpp index acfb7c7..38c8992 100644 --- a/src/animation/linear_animation_instance.cpp +++ b/src/animation/linear_animation_instance.cpp
@@ -42,6 +42,11 @@ bool LinearAnimationInstance::advanceAndApply(float seconds) { + #ifdef WITH_RECORDER + if (Artboard::isDebug) { + printf("[RECORDER_LOG] ==> LinearAnimationInstance::advanceAndApply\n"); + } +#endif RIVE_PROF_SCOPE() bool more = this->advance(seconds, this); this->apply();
diff --git a/src/artboard.cpp b/src/artboard.cpp index 24bae2f..c51f4e4 100644 --- a/src/artboard.cpp +++ b/src/artboard.cpp
@@ -1265,7 +1265,7 @@ { #ifdef WITH_RECORDER if(Artboard::isDebug) { - printf("[RECORDER_LOG] Artboard::advanceInternal: %f\n", elapsedSeconds); + printf("[RECORDER_LOG] Artboard::advanceInternal: %f for %s\n", elapsedSeconds, name().c_str()); } #endif bool didUpdate = false;