Index: trunk/FACT++/src/ConnectionUSB.cc
===================================================================
--- trunk/FACT++/src/ConnectionUSB.cc	(revision 11962)
+++ trunk/FACT++/src/ConnectionUSB.cc	(revision 11963)
@@ -67,5 +67,5 @@
     {
         ostringstream str;
-        str << "Connection closed to " << URL() << ".";
+        str << "Closing connection to " << URL() << ".";
         Info(str);
     }
@@ -74,5 +74,5 @@
     bs::error_code ec;
     cancel(ec);
-    if (!ec)
+    if (ec)
         Error("Cancel async requests on "+URL()+": "+ec.message());
 
@@ -80,5 +80,5 @@
     {
         close(ec);
-        if (!ec)
+        if (ec)
             Error("Closing "+URL()+": "+ec.message());
     }
@@ -248,5 +248,5 @@
 
     ostringstream msg;
-    msg << "Connecting to " << URL() << "...";
+    msg << "Connecting to " << URL() << "... ";
     if (ec)
         msg << " " << ec.message() << " (" << ec << ")";
