add logs
diff --git a/src/animation/linear_animation_instance.cpp b/src/animation/linear_animation_instance.cpp index 38c8992..874ae05 100644 --- a/src/animation/linear_animation_instance.cpp +++ b/src/animation/linear_animation_instance.cpp
@@ -43,9 +43,9 @@ bool LinearAnimationInstance::advanceAndApply(float seconds) { #ifdef WITH_RECORDER - if (Artboard::isDebug) { - printf("[RECORDER_LOG] ==> LinearAnimationInstance::advanceAndApply\n"); - } +// if (Artboard::isDebug) { +// printf("[RECORDER_LOG] ==> LinearAnimationInstance::advanceAndApply\n"); +// } #endif RIVE_PROF_SCOPE() bool more = this->advance(seconds, this);
diff --git a/src/artboard.cpp b/src/artboard.cpp index 8829f91..b1334eb 100644 --- a/src/artboard.cpp +++ b/src/artboard.cpp
@@ -761,9 +761,9 @@ void Artboard::addAnimation(LinearAnimation* object) { #ifdef WITH_RECORDER - if(Artboard::isDebug) { + // if(Artboard::isDebug) { printf("[RECORDER_LOG]Artboard::addAnimation: %s to %s at index: %zu\n", object->name().c_str(), name().c_str(), m_Animations.size()); - } + // } #endif m_Animations.push_back(object); }
diff --git a/src/joystick.cpp b/src/joystick.cpp index e5c3575..fc18ab8 100644 --- a/src/joystick.cpp +++ b/src/joystick.cpp
@@ -98,10 +98,10 @@ if (m_xAnimation != nullptr) { #ifdef WITH_RECORDER - if(Artboard::isDebug) { - printf("[RECORDER_LOG] Joys::X for m_x: %s\n", - m_xAnimation->name().c_str()); - } + // if(Artboard::isDebug) { + // printf("[RECORDER_LOG] Joys::X for m_x: %s\n", + // m_xAnimation->name().c_str()); + // } #endif m_xAnimation->apply( artboard, @@ -112,10 +112,10 @@ { #ifdef WITH_RECORDER - if(Artboard::isDebug) { - printf("[RECORDER_LOG] Joys::Y for m_y: %s\n", - m_yAnimation->name().c_str()); - } + // if(Artboard::isDebug) { + // printf("[RECORDER_LOG] Joys::Y for m_y: %s\n", + // m_yAnimation->name().c_str()); + // } #endif m_yAnimation->apply( artboard,