-
Notifications
You must be signed in to change notification settings - Fork 70
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Encapsulate std::cerr under a single point of control (#656)
* Encapsulate std::cerr under a single point of control When integrating this library into a larger application, downstream code doesn't always want to spew onto cerr. To allow customization, we'll refactor to encapsulate the destination inside of a function. Future work can extent this with a mechanism to redirect it (e.g., to send it to spdlog instead of cerr). --------- Signed-off-by: Jeremy Nimmer <[email protected]>
- Loading branch information
1 parent
76e7db2
commit ebd0060
Showing
11 changed files
with
209 additions
and
82 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
/* | ||
* Copyright (C) 2024 Open Source Robotics Foundation | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
* | ||
*/ | ||
#ifndef GZ_MATH_DETAIL_ERROR_HH_ | ||
#define GZ_MATH_DETAIL_ERROR_HH_ | ||
|
||
#include <string> | ||
|
||
#include <gz/math/Export.hh> | ||
#include <gz/math/config.hh> | ||
|
||
namespace gz::math | ||
{ | ||
// Inline bracket to help doxygen filtering. | ||
inline namespace GZ_MATH_VERSION_NAMESPACE { | ||
namespace detail { | ||
/// Prints the given error message to std::cerr, followed by a newline. | ||
/// (In the future, we might provide a function to change the destination.) | ||
void GZ_MATH_VISIBLE LogErrorMessage(const std::string& message); | ||
} // namespace detail | ||
} // namespace GZ_MATH_VERSION_NAMESPACE | ||
} // namespace gz::math | ||
#endif // GZ_MATH_DETAIL_ERROR_HH_ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.