Closed hlechner closed 1 year ago
Looks like gr.logger("realtime").warning()
does not work anymore in GNU Radio 3.10+. It was changed to gr.logger("realtime").warn()
. But developers did not change this behavior in GNURadio Companion compiler. So after compiling .grc to .py file i change all occurencies of .warning(
to .warn(
by hand.
Sorry for not answering, but I've been quiet busy and couldn't test the problem. Thanks to @m-a-aniskovich for providing a solution. If I understood correctly, it should be solved in the newer versions of GNU Radio.
Since it's a GNU Radio problem, should I close the issue?
Will do. Thanks!
Following the current system wide installation instructions:
no compile error.
I had no major problems, just had to move few files that were installed in:
/usr/local/share/gnuradio/grc/blocks/
to/usr/share/gnuradio/grc/blocks/
/usr/local/lib/
to/usr/lib/
etc..However trying to use the
rx_demo
I'm having this issue:Not sure if it's related but I found this: https://wiki.gnuradio.org/index.php/Logging
In GNU Radio 3.10, you construct your own logger from gr.logger.
I'm using the GNU Radio 3.10.6 (from arch linux repository)