2 implementations of LogError
Microsoft.Build (1)
BackEnd\Components\Logging\LoggingServiceLogMethods.cs (1)
97
public void
LogError
(BuildEventContext location, BuildEventFileInfo file, string messageResourceName, params object[] messageArgs)
Microsoft.Build.Engine.UnitTests (1)
BackEnd\MockLoggingService.cs (1)
364
public void
LogError
(BuildEventContext buildEventContext, BuildEventFileInfo file, string messageResourceName, params object[] messageArgs)
7 references to LogError
Microsoft.Build (7)
BackEnd\BuildManager\BuildManager.cs (3)
2479
loggingService?.
LogError
(buildEventContext, new BuildEventFileInfo(string.Empty) /* no project file */, "ChildExitedPrematurely", node, ExceptionHandling.DebugDumpPath, exception);
2488
loggingService?.
LogError
(BuildEventContext.Invalid, new BuildEventFileInfo(string.Empty) /* no project file */, "ChildExitedPrematurely", node, ExceptionHandling.DebugDumpPath, shutdownPacket.Exception.ToString());
2634
((IBuildComponentHost)this).LoggingService.
LogError
(buildEventContext, new BuildEventFileInfo(String.Empty), "UnableToCreateNode", response.RequiredNodeType.ToString("G"));
BackEnd\Components\Logging\LoggingContext.cs (1)
193
_loggingService.
LogError
(_eventContext, file, messageResourceName, messageArgs);
BackEnd\Components\RequestBuilder\TargetUpToDateChecker.cs (2)
276
_loggingService.
LogError
(_buildEventContext, new BuildEventFileInfo(String.Empty), "BuildTargetCompletely", _targetToAnalyze.Name);
294
_loggingService.
LogError
(_buildEventContext, new BuildEventFileInfo(String.Empty), "BuildTargetPartially", _targetToAnalyze.Name);
Definition\Project.cs (1)
3333
LoggingService.
LogError
(s_buildEventContext, new BuildEventFileInfo(FullPath), "SecurityProjectBuildDisabled");