diff options
author | David Winter <david.winter@analog.com> | 2021-06-28 09:46:48 +0200 |
---|---|---|
committer | mormj <34754695+mormj@users.noreply.github.com> | 2021-07-02 14:05:04 -0400 |
commit | 4071620361e32264c2581a77d104c12bfef62133 (patch) | |
tree | e12472cc8582dde463d12c0cf2db9df44d2eb839 /gnuradio-runtime/python/gnuradio/gr/bindings/logger_python.cc | |
parent | 078d40ddeab957fcc91060131a4b3a1dfe9df676 (diff) |
gr: logger: Add logger_get_configured_logger()
A helper method is added to gr/lib/logger.cc to facilitate the
allocation of loggers which are automatically configured according to the
local GNURadio configuration.
Signed-off-by: David Winter <david.winter@analog.com>
Diffstat (limited to 'gnuradio-runtime/python/gnuradio/gr/bindings/logger_python.cc')
-rw-r--r-- | gnuradio-runtime/python/gnuradio/gr/bindings/logger_python.cc | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/gnuradio-runtime/python/gnuradio/gr/bindings/logger_python.cc b/gnuradio-runtime/python/gnuradio/gr/bindings/logger_python.cc index 1447b76dae..8ec43201fb 100644 --- a/gnuradio-runtime/python/gnuradio/gr/bindings/logger_python.cc +++ b/gnuradio-runtime/python/gnuradio/gr/bindings/logger_python.cc @@ -13,8 +13,8 @@ /* If manual edits are made, the following tags should be modified accordingly. */ /* BINDTOOL_GEN_AUTOMATIC(0) */ /* BINDTOOL_USE_PYGCCXML(0) */ -/* BINDTOOL_HEADER_FILE(logger.h) */ -/* BINDTOOL_HEADER_FILE_HASH(b071f4deb18875805b73952a7aa43389) */ +/* BINDTOOL_HEADER_FILE(logger.h) */ +/* BINDTOOL_HEADER_FILE_HASH(eaf28bcaeb7c34dc0fca3fdd4a9860c0) */ /***********************************************************************************/ #include <pybind11/complex.h> @@ -100,6 +100,9 @@ void bind_logger(py::module& m) py::arg("name"), py::arg("alias")); m.def("logger_get_logger", &gr::logger_get_logger, py::arg("name")); + m.def("logger_get_configured_logger", + &gr::logger_get_configured_logger, + py::arg("name")); m.def("logger_load_config", &gr::logger_load_config, py::arg("config_filename") = ""); m.def("gr_logger_reset_config", &gr_logger_reset_config); m.def("logger_set_level", |