在PowerShell中进行.NET跟踪而无需创建.config文件

时间:2019-05-20 12:01:16

标签: .net powershell app-config

我知道我可以通过将.NET tracing添加到PowerShell安装文件夹中的App config(powershell.exe.config)中来启用<system.diagnostics> elementSystem.Net tracing in Powershell中对此进行了介绍。

事实上,我也想登录System.Net tracing source (e.g. FtpWebRequest)

但是有一种方法可以启用本地跟踪吗?像代码本身一样?还是可能使用某些命令行开关?还是至少可以将应用程序配置文件保存在 local 文件夹中,而不必修改系统范围的设置?

2 个答案:

答案 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)

是的,您可以用代码编写跟踪。

Trace.Write("Hello world");

如果您需要更高级的功能,请尝试Log4Net,它会生成一个配置文件。