summaryrefslogtreecommitdiffstats
path: root/src/client/PatchModel.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/client/PatchModel.cpp')
-rw-r--r--src/client/PatchModel.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/client/PatchModel.cpp b/src/client/PatchModel.cpp
index 91c0c7f1..e52e4eea 100644
--- a/src/client/PatchModel.cpp
+++ b/src/client/PatchModel.cpp
@@ -25,7 +25,6 @@
#include "ingen/shared/URIs.hpp"
using namespace std;
-using namespace Raul;
namespace Ingen {
namespace Client {
@@ -148,8 +147,8 @@ PatchModel::remove_connection(const Port* tail, const Ingen::Port* head)
_signal_removed_connection.emit(c);
_connections->erase(i);
} else {
- warn << "[PatchModel::remove_connection] Failed to find connection " <<
- tail->path() << " -> " << head->path() << endl;
+ Raul::warn(Raul::fmt("Failed to remove patch connection %1% => %2%\n")
+ % tail->path() % head->path());
}
}