diff --git a/src/processor/processor_motion.cpp b/src/processor/processor_motion.cpp index 68b12a87c03737150804e26a6924e64d5fbdbb7a..23dd66ba1656808066c272d65eb2569dc825560c 100644 --- a/src/processor/processor_motion.cpp +++ b/src/processor/processor_motion.cpp @@ -406,7 +406,7 @@ VectorComposite ProcessorMotion::getState() const if (last_ptr_ == nullptr or last_ptr_->getFrame() == nullptr) // We do not have any info of where to find a valid state // Further checking here for origin_ptr is redundant: if last=null, then origin=null too. { - WOLF_ERROR("Processor has no state. Returning an empty VectorComposite with no blocks"); + WOLF_DEBUG("Processor has no state. Returning an empty VectorComposite with no blocks"); return VectorComposite(); // return empty state } @@ -482,7 +482,7 @@ VectorComposite ProcessorMotion::getState(const TimeStamp& _ts) const if (capture_motion == nullptr) // we do not have any info of where to find a valid state { - WOLF_ERROR("Processor has no state. Returning an empty VectorComposite with no blocks"); + WOLF_DEBUG("Processor has no state. Returning an empty VectorComposite with no blocks"); return VectorComposite(); // return empty state } @@ -832,7 +832,7 @@ TimeStamp ProcessorMotion::getTimeStamp ( ) const { if (not last_ptr_) { - WOLF_ERROR("Processor has no time stamp. Returning a non-valid timestamp equal to 0"); + WOLF_DEBUG("Processor has no time stamp. Returning a non-valid timestamp equal to 0"); return TimeStamp(0); }