Skip to content
Snippets Groups Projects
Commit 9bf23952 authored by Leo Gordon's avatar Leo Gordon
Browse files

make templates readable in the output

parent 9317345b
No related branches found
No related tags found
No related merge requests found
...@@ -430,7 +430,7 @@ sub run { ...@@ -430,7 +430,7 @@ sub run {
if(my $heir_analysis = $analysis_adaptor->fetch_by_logic_name($heir_logic_name)) { if(my $heir_analysis = $analysis_adaptor->fetch_by_logic_name($heir_logic_name)) {
$dataflow_rule_adaptor->create_rule( $analysis, $heir_analysis, $branch_code, $input_id_template); $dataflow_rule_adaptor->create_rule( $analysis, $heir_analysis, $branch_code, $input_id_template);
warn "Created DataFlow rule: [$branch_code] $logic_name -> $heir_logic_name" warn "Created DataFlow rule: [$branch_code] $logic_name -> $heir_logic_name"
.($input_id_template ? " WITH TEMPLATE: $input_id_template" : '')."\n"; .($input_id_template ? ' WITH TEMPLATE: '.stringify($input_id_template) : '')."\n";
} else { } else {
die "Could not fetch analysis '$heir_logic_name' to create a dataflow rule"; die "Could not fetch analysis '$heir_logic_name' to create a dataflow rule";
} }
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment