From 45618faf36aed7e1240e2ec524b0156546a3d41b Mon Sep 17 00:00:00 2001 From: Alessandro Comodi Date: Mon, 10 May 2021 14:20:54 +0200 Subject: interchange: site router: fix log messages Signed-off-by: Alessandro Comodi --- fpga_interchange/site_router.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'fpga_interchange') 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; -- cgit v1.2.3