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

Commit 2a82549

Browse files
Commenting out verbose log message
1 parent fb5ee01 commit 2a82549

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/GitHub.Api/OutputProcessors/ProcessManager.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,12 @@ public T Configure<T>(T processTask, bool withInput = false) where T : IProcess
2828
if (processTask.ProcessName?.ToNPath() != null)
2929
{
3030
executableFileName = processTask.ProcessName.ToNPath();
31-
logger.Trace("Configuring Task:{0} with Exec:{1}", processTask.GetType().Name, executableFileName);
31+
//logger.Trace("Configuring Task:{0} with Exec:{1}", processTask.GetType().Name, executableFileName);
3232
}
3333
else
3434
{
3535
executableFileName = environment.GitExecutablePath;
36-
logger.Trace("Configuring Task:{0} with Git", processTask.GetType().Name);
36+
//logger.Trace("Configuring Task:{0} with Git", processTask.GetType().Name);
3737
}
3838

3939
return Configure(processTask,

0 commit comments

Comments
 (0)