Change a debug to information log

This commit is contained in:
Jordan Brown
2020-01-01 11:42:53 -05:00
parent d2fcb49128
commit f8a1f9acf7
@@ -324,7 +324,7 @@ namespace Tgstation.Server.Host.Components
try
{
await Task.Delay(TimeSpan.FromMinutes(minutes > Int32.MaxValue ? Int32.MaxValue : (int)minutes), cancellationToken).ConfigureAwait(false);
logger.LogDebug("Beginning auto update...");
logger.LogInformation("Beginning auto update...");
await eventConsumer.HandleEvent(EventType.InstanceAutoUpdateStart, new List<string>(), cancellationToken).ConfigureAwait(false);
try
{