Fixed debug line typo.
Ylian Saint-Hilaire committed
Jul 28, 2021 at 15:08 UTC
eaa724c18bbab463c0d0d62b278976edc299740a
1 file changed
+1
-1
amtmanager.js
+1
-1
@@ -1897,7 +1897,7 @@ module.exports.CreateAmtManager = function (parent) {
1897
var trustedFqdn = null;
1898
if (dev.mpsConnection.tag.meiState.OsDnsSuffix != null) { trustedFqdn = dev.mpsConnection.tag.meiState.OsDnsSuffix; }
1899
if (dev.mpsConnection.tag.meiState.DnsSuffix != null) { trustedFqdn = dev.mpsConnection.tag.meiState.DnsSuffix; }
1900
- dev.consoleMsg("No opportunity for ACM activation, trusted FQDN: " + ((trustedFqdn == null) ? "(Not Set)" : trustedFqdn));
1900
+ //dev.consoleMsg("No opportunity for ACM activation, trusted FQDN: " + ((trustedFqdn == null) ? "(Not Set)" : trustedFqdn));
1901
dev.consoleMsg("No opportunity for ACM activation, trusted FQDN: " + ((trustedFqdn == null) ? "(Not Set)" : (trustedFqdn + ", HEX: " + Buffer.from(trustedFqdn).toString('hex'))));
1902
removeAmtDevice(dev, 38);
1903
return false; // We are not in CCM and policy restricts use of CCM, so exit now.