diff --git a/PropertySheet.props b/PropertySheet.props
index e9c3c0c..ad97347 100644
--- a/PropertySheet.props
+++ b/PropertySheet.props
@@ -4,7 +4,7 @@
0
7
- 5
+ 6
diff --git a/mss.cpp b/mss.cpp
index 614fc53..d4f1283 100644
--- a/mss.cpp
+++ b/mss.cpp
@@ -107,7 +107,7 @@ OvpnMssDoWork(_In_ UCHAR* buf, SIZE_T len, UINT16 maxmss)
TCP_OPT_MSS* opt_mss = (TCP_OPT_MSS*)opt;
UINT16 mssval = RtlUshortByteSwap(opt_mss->Mss);
if (mssval > maxmss) {
- LOG_INFO("Adjust MSS", TraceLoggingValue(mssval, "old"), TraceLoggingValue(maxmss, "new"));
+ // LOG_INFO("Adjust MSS", TraceLoggingValue(mssval, "old"), TraceLoggingValue(maxmss, "new"));
int accumulate = opt_mss->Mss;
opt_mss->Mss = RtlUshortByteSwap(maxmss);
accumulate -= RtlUshortByteSwap(maxmss);