Skip to content
Snippets Groups Projects
Commit 30becb7b authored by Joan Solà Ortega's avatar Joan Solà Ortega
Browse files

Improve some warnings

parent 3c7a47dc
No related branches found
No related tags found
No related merge requests found
Pipeline #6229 passed
......@@ -208,7 +208,7 @@ void CaptureBase::link(FrameBasePtr _frm_ptr)
}
else
{
WOLF_WARN("Linking with a nullptr");
WOLF_WARN("Linking Capture ", id(), " to a nullptr");
}
}
......
......@@ -278,7 +278,7 @@ void FrameBase::link(TrajectoryBasePtr _trj_ptr)
}
else
{
WOLF_WARN("Linking with a nullptr");
WOLF_WARN("Linking Frame ", id(), " to a nullptr");
}
}
......
......@@ -114,7 +114,7 @@ void ProcessorBase::link(SensorBasePtr _sen_ptr)
}
else
{
WOLF_WARN("Linking with a nullptr");
WOLF_WARN("Linking Processor ", id(), " to a nullptr");
}
}
......
......@@ -453,7 +453,7 @@ void SensorBase::link(HardwareBasePtr _hw_ptr)
}
else
{
WOLF_WARN("Linking with a nullptr");
WOLF_WARN("Linking Sensor ", id(), " to a nullptr");
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment