Skip to content
Snippets Groups Projects
Commit c29b081b authored by Soeren Peters's avatar Soeren Peters
Browse files

Remove add_ostream_redirect call in bindings.

parent 22fdde20
No related branches found
No related tags found
1 merge request!217Remove old logger from basics and rework basics.
This commit is part of merge request !217. Comments created here will be created in the context of that merge request.
......@@ -49,7 +49,8 @@ namespace py_bindings
PYBIND11_MODULE(bindings, m)
{
py::add_ostream_redirect(m, "ostream_redirect");
// because we do not use the old logger (src/basics/logger) anymore and cout is not passed anymore to the old logger, we probably do not need this anymore
// pybind11::add_ostream_redirect(m, "ostream_redirect");
basics::makeModule(m);
lbm::makeModule(m);
logging::makeModule(m);
......@@ -60,4 +61,4 @@ namespace py_bindings
cpu::makeModule(m);
#endif
}
}
\ No newline at end of file
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment