aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlessandro Comodi <acomodi@antmicro.com>2021-05-10 14:20:54 +0200
committerAlessandro Comodi <acomodi@antmicro.com>2021-05-10 14:20:54 +0200
commit45618faf36aed7e1240e2ec524b0156546a3d41b (patch)
treeed973edac6d356c08eaff3ee9238e12d8d2eb176
parentbeff2b912c2dfdd05334f642e1d86bbd197b16ef (diff)
downloadnextpnr-45618faf36aed7e1240e2ec524b0156546a3d41b.tar.gz
nextpnr-45618faf36aed7e1240e2ec524b0156546a3d41b.tar.bz2
nextpnr-45618faf36aed7e1240e2ec524b0156546a3d41b.zip
interchange: site router: fix log messages
Signed-off-by: Alessandro Comodi <acomodi@antmicro.com>
-rw-r--r--fpga_interchange/site_router.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/fpga_interchange/site_router.cc b/fpga_interchange/site_router.cc
index 561b1790..e9b3f61f 100644
--- a/fpga_interchange/site_router.cc
+++ b/fpga_interchange/site_router.cc
@@ -245,7 +245,7 @@ struct SiteExpansionLoop
if (!parent_node->can_leave_site()) {
// This path has already left the site once, don't leave it again!
if (verbose_site_router(ctx)) {
- log_info("Pip %s is not a valid for this path because it has already left the site\n",
+ log_info("%s is not a valid PIP for this path because it has already left the site\n",
ctx->nameOfPip(pip));
}
continue;
@@ -258,7 +258,7 @@ struct SiteExpansionLoop
// don't enter it again!
if (verbose_site_router(ctx)) {
log_info(
- "Pip %s is not a valid for this path because it has already entered the site\n",
+ "%s is not a valid PIP for this path because it has already entered the site\n",
ctx->nameOfPip(pip));
}
continue;
@@ -280,7 +280,7 @@ struct SiteExpansionLoop
if (!node->is_valid_node()) {
if (verbose_site_router(ctx)) {
log_info(
- "Pip %s is not a valid for this path because it has left the site after entering it.\n",
+ "%s is not a valid PIP for this path because it has left the site after entering it.\n",
ctx->nameOfPip(pip));
}
continue;