summaryrefslogtreecommitdiffstats
path: root/src/PatchageCanvas.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/PatchageCanvas.cpp')
-rw-r--r--src/PatchageCanvas.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/PatchageCanvas.cpp b/src/PatchageCanvas.cpp
index f38ccca..fb48bff 100644
--- a/src/PatchageCanvas.cpp
+++ b/src/PatchageCanvas.cpp
@@ -246,7 +246,7 @@ PatchageCanvas::connect(Ganv::Node* port1, Ganv::Node* port2)
_app->alsa_driver()->connect(p1, p2);
#endif
} else {
- _app->log().warning("Cannot make connection, incompatible port types.");
+ _app->log().warning("Cannot make connection, incompatible port types");
}
}
@@ -267,7 +267,7 @@ PatchageCanvas::disconnect(Ganv::Node* port1, Ganv::Node* port2)
}
if (!input || !output || input->is_output() || output->is_input()) {
- _app->log().error("Attempt to disconnect mismatched/unknown ports.");
+ _app->log().error("Attempt to disconnect mismatched/unknown ports");
return;
}
@@ -283,7 +283,7 @@ PatchageCanvas::disconnect(Ganv::Node* port1, Ganv::Node* port2)
_app->alsa_driver()->disconnect(output, input);
#endif
} else {
- _app->log().error("Attempt to disconnect ports with strange types.");
+ _app->log().error("Attempt to disconnect ports with strange types");
}
}