Difference between revisions of "Watch Desktop Logs"

From truxwiki.com
Jump to navigation Jump to search
(Created page with "If you want to see what the desktop is logging as it runs, start Powershell, then: <syntaxhighlight lang="powershell"> Get-Content "$env:LOCALAPPDATA\probity\truxton\TruxtonCl...")
 
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
If you want to see what the desktop is logging as it runs, start Powershell, then:
+
If you want to see what the desktop is logging as it runs, start [https://docs.microsoft.com/en-us/powershell/ PowerShell], then:
<syntaxhighlight lang="powershell">
+
<source lang="powershell">
 
Get-Content "$env:LOCALAPPDATA\probity\truxton\TruxtonClient.log" -Tail 10 -wait
 
Get-Content "$env:LOCALAPPDATA\probity\truxton\TruxtonClient.log" -Tail 10 -wait
</syntaxhighlight>
+
</source>
 +
 
 +
==Remarks==
 +
You can configure Truxton to write to a different folder using the <code>[[Configuration System|logdir]]</code> option.

Latest revision as of 06:47, 16 February 2021

If you want to see what the desktop is logging as it runs, start PowerShell, then:

Get-Content "$env:LOCALAPPDATA\probity\truxton\TruxtonClient.log" -Tail 10 -wait

Remarks

You can configure Truxton to write to a different folder using the logdir option.