diff options
| -rw-r--r-- | host/lib/rfnoc/graph.cpp | 7 | 
1 files changed, 6 insertions, 1 deletions
| diff --git a/host/lib/rfnoc/graph.cpp b/host/lib/rfnoc/graph.cpp index 7dc72420c..f3977f79e 100644 --- a/host/lib/rfnoc/graph.cpp +++ b/host/lib/rfnoc/graph.cpp @@ -292,7 +292,12 @@ void graph_t::resolve_all_properties(          // On current node, call local resolution. This may cause other          // properties to become dirty. -        node_accessor.resolve_props(current_node); +        try { +            node_accessor.resolve_props(current_node); +        } catch (const uhd::resolve_error& ex) { +            UHD_LOG_ERROR(LOG_ID, current_node->get_unique_id() + ": " + ex.what()); +            throw; +        }          //  Forward all edge props in all directions from current node. We make          //  sure to skip properties if the edge is flagged as | 
