We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 57a9221 commit 4d2902bCopy full SHA for 4d2902b
src/viam/sdk/robot/client.cpp
@@ -120,9 +120,9 @@ RobotClient::~RobotClient() {
120
try {
121
this->close();
122
} catch (const std::exception& e) {
123
- VIAM_SDK_LOG(error) << "Received err while closing RobotClient: " << e.what() << "\n";
+ VIAM_SDK_LOG(error) << "Received err while closing RobotClient: " << e.what();
124
} catch (...) {
125
- VIAM_SDK_LOG(error) << "Received unknown err while closing RobotClient\n";
+ VIAM_SDK_LOG(error) << "Received unknown err while closing RobotClient";
126
}
127
128
0 commit comments