Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion dotnet/nuget/nuget-package.props
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<VersionPrefix>0.0.1</VersionPrefix>
<RCNumber>1</RCNumber>
<!-- Preview-only branch: all publishable packages ship as 0.0.1-preview.260417.2 regardless of IsReleaseCandidate/VersionSuffix. -->
<PackageVersion>$(VersionPrefix)-preview.260420.1</PackageVersion>
<PackageVersion>$(VersionPrefix)-preview.260420.2</PackageVersion>
<GitTag>0.0.1</GitTag>

<Configurations>Debug;Release;Publish</Configurations>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -111,10 +111,13 @@ public async Task StartAsync(CancellationToken cancellationToken)
}
catch (Exception ex) when (ex is not OperationCanceledException)
{
this._logger.LogError(
ex,
"Failed to connect to toolbox '{ToolboxName}'. Tools from this toolbox will not be available.",
toolboxName);
if (this._logger.IsEnabled(LogLevel.Error))
{
this._logger.LogError(
ex,
"Failed to connect to toolbox '{ToolboxName}'. Tools from this toolbox will not be available.",
toolboxName);
}
}
}

Expand Down