Sfoglia il codice sorgente

Server: Small logging improvement

Julius Pfrommer 6 anni fa
parent
commit
07947c1f42
1 ha cambiato i file con 2 aggiunte e 2 eliminazioni
  1. 2 2
      src/server/ua_server_binary.c

+ 2 - 2
src/server/ua_server_binary.c

@@ -638,8 +638,8 @@ processSecureChannelMessage(void *application, UA_SecureChannel *channel,
     }
     if(retval != UA_STATUSCODE_GOOD) {
         UA_LOG_INFO_CHANNEL(server->config.logger, channel,
-                            "Processing the message failed with StatusCode %s."
-                            "Closing the channel", UA_StatusCode_name(retval));
+                            "Processing the message failed with StatusCode %s. "
+                            "Closing the channel.", UA_StatusCode_name(retval));
         Service_CloseSecureChannel(server, channel);
     }
 }