diff --git a/Nop.Plugin.Misc.AuctionPlugin/Content/Js/LiveAnnouncement.js b/Nop.Plugin.Misc.AuctionPlugin/Content/Js/LiveAnnouncement.js index 24e046f..d198ed6 100644 --- a/Nop.Plugin.Misc.AuctionPlugin/Content/Js/LiveAnnouncement.js +++ b/Nop.Plugin.Misc.AuctionPlugin/Content/Js/LiveAnnouncement.js @@ -58,15 +58,15 @@ Data: data }; - console.log("Before send message to the server." + messageType); + console.log("Before send message to the server! " + messageType); connection.invoke("ReceiveMessageFromClient", messageWrapper) .then(() => { - console.log("Message successfully sent to the server." + messageType); + console.log("Message successfully sent to the server! " + messageType); }) .catch(err => { //window.RequestCount--; - console.error("Error sending message to the server:" + messageType, err); + console.error("Error sending message to the server! " + messageType, err); }); };