File tree Expand file tree Collapse file tree 1 file changed +22
-4
lines changed Expand file tree Collapse file tree 1 file changed +22
-4
lines changed Original file line number Diff line number Diff line change @@ -57,7 +57,7 @@ Alternatively, use the Windows Registry at:
5757
5858### Environment Variable Script
5959
60- \`\`\ ` batch
60+ `` `batch
6161@echo off
6262REM Set Excel-DNA Logging Environment Variables Persistently
6363
@@ -69,11 +69,11 @@ setx EXCELDNA_DIAGNOSTICS_FILE_NAME "ExcelDnaLog.txt"
6969
7070echo Excel-DNA Logging Environment Variables are set.
7171pause
72- \`\`\ `
72+ `` `
7373
7474### Registry Script
7575
76- \`\`\ ` reg
76+ `` `reg
7777Windows Registry Editor Version 5.00
7878
7979[HKEY_CURRENT_USER\Software\ExcelDna\Diagnostics]
@@ -82,7 +82,25 @@ Windows Registry Editor Version 5.00
8282"DebuggerLevel"="Error"
8383"FileLevel"="Verbose"
8484"FileName"="ExcelDnaLog.txt"
85- \`\`\`
85+ ```
86+
87+ ### IntelliSense logging
88+
89+ Similar options can be used (with separate settings) for the IntelliSense extension:
90+
91+ ``` batch
92+ setx EXCELDNA_INTELLISENSE_DIAGNOSTICS_SOURCE_LEVEL "Verbose"
93+ setx EXCELDNA_INTELLISENSE_DIAGNOSTICS_DEBUGGER_LEVEL "Verbose"
94+ setx EXCELDNA_INTELLISENSE_DIAGNOSTICS_FILE_LEVEL "Warning"
95+ setx EXCELDNA_INTELLISENSE_DIAGNOSTICS_FILE_NAME "ExcelDnaIntelliSenseLog.txt"
96+ ```
97+
98+ The equivalent registry entries are under
99+
100+ - \` HKEY_CURRENT_USER\Software\ExcelDna\IntelliSense\Diagnostics\`
101+ - \` HKEY_LOCAL_MACHINE\Software\ExcelDna\IntelliSense\Diagnostics\`
102+
103+ Note that the LogDisplay is not configured for the IntelliSense extension.
86104
87105## Conclusion
88106
You can’t perform that action at this time.
0 commit comments