Skip to content

Commit d9ec66e

Browse files
authored
Merge pull request #67 from tue-robotics/log_timestamp
(image_buffer) better timestamp logging
2 parents c2ad0f0 + 19f7d32 commit d9ec66e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ed_sensor_integration/src/kinect/image_buffer.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ bool ImageBuffer::getMostRecentImageTF()
143143
if (new_image)
144144
{
145145
image_buffer_.push_front(new_image);
146-
ROS_DEBUG_STREAM_NAMED("image_buffer", "[IMAGE_BUFFER] New image from the RGBD client with timestamp: " << new_image->getTimestamp());
146+
ROS_DEBUG_STREAM_NAMED("image_buffer", "[IMAGE_BUFFER] New image from the RGBD client with timestamp: " << std::fixed << std::setprecision(12) << new_image->getTimestamp());
147147
}
148148
else
149149
{

0 commit comments

Comments
 (0)