瀏覽代碼

Server: Small logging improvement

Julius Pfrommer 6 年之前
父節點
當前提交
07947c1f42
共有 1 個文件被更改,包括 2 次插入2 次删除
  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);
     }
 }