Skip to content

Commit

Permalink
Remove noisy warning
Browse files Browse the repository at this point in the history
  • Loading branch information
alexxcons committed Jan 28, 2022
1 parent e462a6a commit 2b1be65
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ list(INSERT CMAKE_MODULE_PATH 0 ${CMAKE_SOURCE_DIR}/cmake/Modules)
# All of them need to be filled, otherwise the version will be named e.g. "libname-1.2.3..so"
set(VERSION_INFO_MAJOR_VERSION 5)
set(VERSION_INFO_API_COMPAT 1)
set(VERSION_INFO_MINOR_VERSION 0)
set(VERSION_INFO_MINOR_VERSION 2)
set(VERSION_INFO_MAINT_VERSION 0)


Expand Down
2 changes: 0 additions & 2 deletions lib/digitizer_block_impl.cc
Original file line number Diff line number Diff line change
Expand Up @@ -973,8 +973,6 @@ namespace gr {
std::chrono::duration<float> remaining_poll_duration = std::chrono::high_resolution_clock::now() - poll_start;
if(remaining_poll_duration > poll_duration) {
sleep_time = std::chrono::duration<float>::zero();
GR_LOG_WARN(d_logger, "Watchdog: Poll rate is set too low (" + std::to_string(d_poll_rate) + "s) "
"Cannot ensure that the Digitizer block work method will be called within that rate.");
}
else {
sleep_time = poll_duration - remaining_poll_duration;
Expand Down

0 comments on commit 2b1be65

Please sign in to comment.