From f28ca3ffd0c327f2fa92a08b28d443cbb285e47d Mon Sep 17 00:00:00 2001 From: tangxifan Date: Wed, 29 Jan 2020 18:58:57 -0700 Subject: [PATCH] add more echo to log --- openfpga/src/base/check_netlist_naming_conflict.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/openfpga/src/base/check_netlist_naming_conflict.cpp b/openfpga/src/base/check_netlist_naming_conflict.cpp index c3fc50d0b..3470c9f0a 100644 --- a/openfpga/src/base/check_netlist_naming_conflict.cpp +++ b/openfpga/src/base/check_netlist_naming_conflict.cpp @@ -202,7 +202,6 @@ void print_netlist_naming_fix_report(const std::string& fname, fp << "\t" << "" << "\n"; - fp << "" << "\n"; /* Close the file stream */ @@ -245,6 +244,8 @@ void check_netlist_naming_conflict(OpenfpgaContext& openfpga_context, print_netlist_naming_fix_report(cmd_context.option_value(cmd, opt_report), g_vpr_ctx.atom().nlist, openfpga_context.vpr_netlist_annotation()); + VTR_LOG("Naming fix-up report is generated to file '%s'\n", + cmd_context.option_value(cmd, opt_report).c_str()); } } }