Skip to content
This repository has been archived by the owner on Jul 30, 2024. It is now read-only.
/ NuGet.Jobs Public archive

Commit

Permalink
Fix db logging
Browse files Browse the repository at this point in the history
  • Loading branch information
chenriksson committed May 8, 2018
1 parent d00505a commit 18aa5c8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@
<Version>9.0.1</Version>
</PackageReference>
<PackageReference Include="NuGet.Services.Sql">
<Version>2.25.0-master-30263</Version>
<Version>2.25.0-master-30453</Version>
</PackageReference>
<PackageReference Include="WindowsAzure.Storage">
<Version>7.1.2</Version>
Expand Down
3 changes: 2 additions & 1 deletion src/Search.GenerateAuxiliaryData/SqlExporter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,8 @@ protected static string GetEmbeddedSqlScript(string resourceName)

public override async Task ExportAsync()
{
_logger.LogInformation("Generating {ReportName} report from {DataSource}/{InitialCatalog}.", _name, "todo", "todo");
_logger.LogInformation("Generating {ReportName} report from {DataSource}/{InitialCatalog}.",
_name, ConnectionFactory.DataSource, ConnectionFactory.InitialCatalog);

JContainer result;
using (var connection = await ConnectionFactory.CreateAsync())
Expand Down

0 comments on commit 18aa5c8

Please sign in to comment.