]> git.mxchange.org Git - flightgear.git/commitdiff
httpd: fix misplaced warning message
authorTorsten Dreyer <torsten@ŧ3r.de>
Mon, 2 Mar 2015 19:39:23 +0000 (20:39 +0100)
committerTorsten Dreyer <torsten@ŧ3r.de>
Mon, 2 Mar 2015 19:39:23 +0000 (20:39 +0100)
src/Network/http/PropertyChangeWebsocket.cxx

index bf4f0856cb826cd951bcf48a6e37232e865facfe..0d08fc3675abeb3447879334a3adc0a9bb962e17 100644 (file)
@@ -239,8 +239,8 @@ void PropertyChangeWebsocket::WatchedNodesList::handleCommand(const string & com
         SG_LOG(SG_NETWORK, SG_INFO, "httpd: " << command << " '" << node << "' success");
         return;
       }
-      SG_LOG(SG_NETWORK, SG_WARN, "httpd: " << command << " '" << node << "' ignored (not found)");
     }
+    SG_LOG(SG_NETWORK, SG_WARN, "httpd: " << command << " '" << node << "' ignored (not found)");
   }
 }