Skip to content

Commit 8286e00

Browse files
committed
Add debug logging to bootstrap launch methods
Inserted GeneralTracer.Debug statements at the start of LaunchAsync methods in GeneralClientBootstrap and GeneralUpdateBootstrap to improve traceability of bootstrap launches.
1 parent 3af444c commit 8286e00

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

src/c#/GeneralUpdate.ClientCore/GeneralClientBootstrap.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ public override async Task<GeneralClientBootstrap> LaunchAsync()
4545
{
4646
try
4747
{
48+
GeneralTracer.Debug("GeneralClientBootstrap Launch.");
4849
CallSmallBowlHome(_configInfo.Bowl);
4950
ExecuteCustomOptions();
5051
await ExecuteWorkflowAsync();

src/c#/GeneralUpdate.Core/GeneralUpdateBootstrap.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@ public GeneralUpdateBootstrap()
5959

6060
public override async Task<GeneralUpdateBootstrap> LaunchAsync()
6161
{
62+
GeneralTracer.Debug("GeneralUpdateBootstrap Launch.");
6263
StrategyFactory();
6364
var manager =
6465
new DownloadManager(_configInfo.TempPath, _configInfo.Format, _configInfo.DownloadTimeOut);

0 commit comments

Comments
 (0)