Removing old debug data https://github.com/Ylianst/MeshCentral/issues/3987

silversword411 committed May 16, 2022 at 19:39 UTC 7a6ee82d8b9fb7a7b96c9aa9cf77d1acba6b643f
2 files changed +2 -15
docs/docs/design/index.md
+1 -1
@@ -203,7 +203,7 @@ MeshCentral makes heavy use of Transport Layer Security (TLS) and datagram-TLS (
203
204 Probably the most important TLS configuration is for the MeshCentral server ports 443 and 4433. These two ports are exposed to the Internet and so, should be setup as securely as possible.
205
206 -### MeshCentral HTTPS port 443**
206 +### MeshCentral HTTPS port 443
207
208 The HTTPS port on the MeshCentral server will only support TLS 1.2 and above, and makes use of only 6 cypher suites:
209
docs/docs/meshcentral/debugging.md
+1 -14
@@ -80,20 +80,7 @@ You'll then have 3 files:
80 -rw-rw-r-- 1 tactical tactical 381 Feb 2 12:02 mesherrors.txt
81 ```
82
83 -And to make it truly log everything, change the following in meshcentral.js around line 3530.
84 -
85 -Old:
86 -```
87 -obj.fs.writeSync(obj.xxLogFile, new Date().toLocaleTimeString() + ' - ' + source + ': ' + Array.prototype.slice.call(...args).join('') + '\r\n');
88 -```
89 -
90 -New:
91 -
92 -```
93 -obj.fs.writeSync(obj.xxLogFile, new Date().toLocaleTimeString() + ' - ' + source + ': ' + args.join(' ') + '\r\n');
94 -```
95 -
96 -`log.txt` will now log everything in the Trace tab, but not formatted as nice.
83 +`log.txt` will now log everything in the Trace tab
84
85 ## Restricting server to specific IP(s)
86