Skip to content

Commit 9161d6b

Browse files
author
Felix Exner (fexner)
authored
Make depreaction warning for keepalive_counter a warning instead of error (#182)
1 parent c3bead7 commit 9161d6b

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/ur/ur_driver.cpp

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -585,11 +585,11 @@ std::vector<std::string> UrDriver::getRTDEOutputRecipe()
585585

586586
void UrDriver::setKeepaliveCount(const uint32_t count)
587587
{
588-
URCL_LOG_ERROR("DEPRECATION NOTICE: Setting the keepalive count has been deprecated. Instead use the "
589-
"RobotReceiveTimeout, to set the timeout directly in the write commands. Please change your code to "
590-
"set the "
591-
"read timeout in the write commands directly. This keepalive count will overwrite the timeout passed "
592-
"to the write functions.");
588+
URCL_LOG_WARN("DEPRECATION NOTICE: Setting the keepalive count has been deprecated. Instead use the "
589+
"RobotReceiveTimeout, to set the timeout directly in the write commands. Please change your code to "
590+
"set the "
591+
"read timeout in the write commands directly. This keepalive count will overwrite the timeout passed "
592+
"to the write functions.");
593593
reverse_interface_->setKeepaliveCount(count);
594594
}
595595

0 commit comments

Comments
 (0)