summaryrefslogtreecommitdiffstats
path: root/src/gui/GraphCanvas.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/GraphCanvas.cpp')
-rw-r--r--src/gui/GraphCanvas.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/gui/GraphCanvas.cpp b/src/gui/GraphCanvas.cpp
index 47a0abcf..986fefdc 100644
--- a/src/gui/GraphCanvas.cpp
+++ b/src/gui/GraphCanvas.cpp
@@ -421,8 +421,8 @@ GraphCanvas::connection(SPtr<const ArcModel> arc)
if (tail && head) {
new gui::Arc(*this, arc, tail, head);
} else {
- _app.log().error(fmt("Unable to find ports to connect %1% => %2%\n")
- % arc->tail_path() % arc->head_path());
+ _app.log().error("Unable to find ports to connect %1% => %2%\n",
+ arc->tail_path(), arc->head_path());
}
}
@@ -442,8 +442,8 @@ GraphCanvas::disconnection(SPtr<const ArcModel> arc)
}
}
} else {
- _app.log().error(fmt("Unable to find ports to disconnect %1% => %2%\n")
- % arc->tail_path() % arc->head_path());
+ _app.log().error("Unable to find ports to disconnect %1% => %2%\n",
+ arc->tail_path(), arc->head_path());
}
}