mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-11-23 09:31:26 +00:00
chore: [ci skip] Add more misc logging similar to the "loading content archive" line for loading a base game dump, to updates and DLC.
This commit is contained in:
parent
bbad867319
commit
5a9d5ee664
@ -194,11 +194,11 @@ namespace Ryujinx.HLE.FileSystem
|
|||||||
// TODO: Check Aoc version.
|
// TODO: Check Aoc version.
|
||||||
if (!AocData.TryAdd(titleId, new AocItem(containerPath, ncaPath)))
|
if (!AocData.TryAdd(titleId, new AocItem(containerPath, ncaPath)))
|
||||||
{
|
{
|
||||||
Logger.Warning?.Print(LogClass.Application, $"Duplicate AddOnContent detected. TitleId {titleId:X16}");
|
Logger.Warning?.Print(LogClass.Application, $"Duplicate AddOnContent detected. TitleId {titleId:X16} @ '{containerPath}'");
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
Logger.Info?.Print(LogClass.Application, $"Found AddOnContent with TitleId {titleId:X16}");
|
Logger.Notice.Print(LogClass.Application, $"Found AddOnContent with TitleId {titleId:X16} @ '{containerPath}'");
|
||||||
|
|
||||||
if (!mergedToContainer)
|
if (!mergedToContainer)
|
||||||
{
|
{
|
||||||
|
|||||||
@ -102,11 +102,13 @@ namespace Ryujinx.HLE.Loaders.Processes.Extensions
|
|||||||
return (false, ProcessResult.Failed);
|
return (false, ProcessResult.Failed);
|
||||||
}
|
}
|
||||||
|
|
||||||
(Nca updatePatchNca, Nca updateControlNca) = mainNca.GetUpdateData(device.FileSystem, device.System.FsIntegrityCheckLevel, device.Configuration.UserChannelPersistence.Index, out string _);
|
(Nca updatePatchNca, Nca updateControlNca) = mainNca.GetUpdateData(device.FileSystem, device.System.FsIntegrityCheckLevel, device.Configuration.UserChannelPersistence.Index, out string updatePath);
|
||||||
|
|
||||||
if (updatePatchNca != null)
|
if (updatePatchNca != null)
|
||||||
{
|
{
|
||||||
patchNca = updatePatchNca;
|
patchNca = updatePatchNca;
|
||||||
|
if (updatePath != null)
|
||||||
|
Logger.Notice.PrintMsg(LogClass.Application, $"Loading update NCA from '{updatePath}'.");
|
||||||
}
|
}
|
||||||
|
|
||||||
if (updateControlNca != null)
|
if (updateControlNca != null)
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user