Fix log message

This commit is contained in:
Ben Olden-Cooligan 2024-04-01 10:17:52 -07:00
parent 1efc0eeef5
commit d569e6cef7

View File

@ -91,7 +91,7 @@ public class SharedDeviceManager : ISharedDeviceManager
_userStarted = false;
ResetStartTimer();
_server.Stop().ContinueWith(t =>
_logger.LogError(t.Exception, "Error starting ScanServer"), TaskContinuationOptions.OnlyOnFaulted);
_logger.LogError(t.Exception, "Error stopping ScanServer"), TaskContinuationOptions.OnlyOnFaulted);
ReleaseLock();
}
}