add serverId to the log

This commit is contained in:
Luke Pulverenti
2015-12-30 02:11:58 -05:00
parent 544671c585
commit 7f7d6cddcc
3 changed files with 14 additions and 4 deletions

View File

@@ -66,7 +66,7 @@ namespace MediaBrowser.Server.Implementations.EntryPoints
{
try
{
await new UsageReporter(_applicationHost, _httpClient, _userManager)
await new UsageReporter(_applicationHost, _httpClient, _userManager, _logger)
.ReportAppUsage(client, CancellationToken.None)
.ConfigureAwait(false);
}
@@ -108,7 +108,7 @@ namespace MediaBrowser.Server.Implementations.EntryPoints
{
try
{
await new UsageReporter(_applicationHost, _httpClient, _userManager)
await new UsageReporter(_applicationHost, _httpClient, _userManager, _logger)
.ReportServerUsage(CancellationToken.None)
.ConfigureAwait(false);
}