我知道我可以通过将.NET tracing添加到PowerShell安装文件夹中的App config(powershell.exe.config
)中来启用<system.diagnostics>
element。 System.Net tracing in Powershell中对此进行了介绍。
事实上,我也想登录System.Net
tracing source (e.g. FtpWebRequest
)。
但是有一种方法可以启用本地跟踪吗?像代码本身一样?还是可能使用某些命令行开关?还是至少可以将应用程序配置文件保存在 local 文件夹中,而不必修改系统范围的设置?
答案 0 :(得分:6)
仅在代码中(因此在Powershell中)启用默认跟踪源(Trace.Information
等)相对容易。
对System.Net
跟踪源执行此操作比较复杂,因为它们无法公开访问。
我以前已经在C#中看到过,例如,调用System.Net
方法Dns.Resolve
是创建TraceSource
所必需的,但是在Powershell中似乎不需要。
所以不是一个很好的解决方案...但是,我猜这取决于您的选择:
$id = [Environment]::TickCount;
$fileName = "${PSScriptRoot}\Powershell_log_${id}.txt"
$listener1 = [System.Diagnostics.TextWriterTraceListener]::New($fileName, "text_listener")
$listener2 = [System.Diagnostics.ConsoleTraceListener]::New()
$listener2.Name = "console_listener"
[System.Diagnostics.Trace]::AutoFlush = $true
[System.Diagnostics.Trace]::Listeners.Add($listener1) | out-null
[System.Diagnostics.Trace]::Listeners.Add($listener2) | out-null
# Use reflection to enable and hook up the TraceSource
$logging = [System.Net.Sockets.Socket].Assembly.GetType("System.Net.Logging")
$flags = [System.Reflection.BindingFlags]::NonPublic -bor [System.Reflection.BindingFlags]::Static
$logging.GetField("s_LoggingEnabled", $flags).SetValue($null, $true)
$webTracing = $logging.GetProperty("Web", $flags);
$webTraceSource = [System.Diagnostics.Tracesource]$webTracing.GetValue($null, $null);
$webTraceSource.Switch.Level = [System.Diagnostics.SourceLevels]::Information
$webTracesource.Listeners.Add($listener1) | out-null
$webTracesource.Listeners.Add($listener2) | out-null
[System.Diagnostics.Trace]::TraceInformation("About to do net stuff");
[System.Net.FtpWebRequest]::Create("ftp://www.google.com") | out-null
[System.Diagnostics.Trace]::TraceInformation("Finished doing net stuff");
#get rid of the listeners
[System.Diagnostics.Trace]::Listeners.Clear();
$webTraceSource.Listeners.Clear();
$listener1.Dispose();
$listener2.Dispose();
答案 1 :(得分:-1)