add temporary logs

This commit is contained in:
GreemDev 2025-06-03 18:19:27 -05:00
parent c9116e2a52
commit 740c346b3b
2 changed files with 4 additions and 0 deletions

View File

@ -47,6 +47,8 @@ namespace Ryujinx.Ava.Systems
_currentGitHubReleaseChannel = ReleaseInformation.IsCanaryBuild _currentGitHubReleaseChannel = ReleaseInformation.IsCanaryBuild
? releaseChannels.Canary ? releaseChannels.Canary
: releaseChannels.Stable; : releaseChannels.Stable;
Logger.Info?.Print(LogClass.Application, $"Loaded GitHub release channel for '{(ReleaseInformation.IsCanaryBuild ? "canary" : "stable")}'");
_changelogUrlFormat = _currentGitHubReleaseChannel.Value.UrlFormat; _changelogUrlFormat = _currentGitHubReleaseChannel.Value.UrlFormat;
} }

View File

@ -50,6 +50,8 @@ namespace Ryujinx.Ava.Systems
_currentGitLabReleaseChannel = ReleaseInformation.IsCanaryBuild _currentGitLabReleaseChannel = ReleaseInformation.IsCanaryBuild
? releaseChannels.Canary ? releaseChannels.Canary
: releaseChannels.Stable; : releaseChannels.Stable;
Logger.Info?.Print(LogClass.Application, $"Loaded GitLab release channel for '{(ReleaseInformation.IsCanaryBuild ? "canary" : "stable")}'");
_changelogUrlFormat = _currentGitLabReleaseChannel.UrlFormat; _changelogUrlFormat = _currentGitLabReleaseChannel.UrlFormat;
} }