Skip to content
This repository was archived by the owner on Dec 5, 2024. It is now read-only.

Commit 1a514a7

Browse files
Removing some log messages
1 parent 57e18a5 commit 1a514a7

File tree

2 files changed

+0
-5
lines changed

2 files changed

+0
-5
lines changed

src/GitHub.Api/OutputProcessors/ProcessManager.cs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,6 @@ public T Configure<T>(T processTask, NPath? executable = null, string arguments
3030
bool dontSetupGit = false)
3131
where T : IProcess
3232
{
33-
logger.Trace("Configure executable:{0}", executable);
34-
3533
if (executable == null)
3634
{
3735
if (processTask.ProcessName?.ToNPath() != null)
@@ -59,7 +57,6 @@ public T Configure<T>(T processTask, NPath? executable = null, string arguments
5957
StandardErrorEncoding = Encoding.UTF8
6058
};
6159

62-
logger.Trace("gitEnvironment.Configure dontSetupGit:{0}", dontSetupGit);
6360
gitEnvironment.Configure(startInfo, workingDirectory ?? environment.RepositoryPath, dontSetupGit);
6461

6562
if (executable.Value.IsRelative)

src/GitHub.Api/Platform/ProcessEnvironment.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,6 @@ public void Configure(ProcessStartInfo psi, NPath workingDirectory, bool dontSet
6060
var userPath = @"C:\windows\system32;C:\windows";
6161
var path = $"{gitPathRoot}\\cmd;{gitPathRoot}\\usr\\bin;{execPath};{binPath}";
6262

63-
Logger.Trace("Calculated Path: {0}", path);
64-
6563
if (execPath.IsInitialized)
6664
psi.EnvironmentVariables["GIT_EXEC_PATH"] = execPath.ToString();
6765

0 commit comments

Comments
 (0)