mirror of https://github.com/ppy/osu
Rename flag
This commit is contained in:
parent
a56a5d563c
commit
bb17b684b0
|
@ -33,7 +33,7 @@ public override void ExportToStream(TModel model, Stream outputStream, ProgressN
|
|||
{
|
||||
int i = 0;
|
||||
int fileCount = model.Files.Count();
|
||||
bool fileMissing = false;
|
||||
bool anyFileMissing = false;
|
||||
|
||||
foreach (var file in model.Files)
|
||||
{
|
||||
|
@ -44,7 +44,7 @@ public override void ExportToStream(TModel model, Stream outputStream, ProgressN
|
|||
if (stream == null)
|
||||
{
|
||||
Logger.Log($"File {file.Filename} is missing in local storage and will not be included in the export", LoggingTarget.Database);
|
||||
fileMissing = true;
|
||||
anyFileMissing = true;
|
||||
continue;
|
||||
}
|
||||
|
||||
|
@ -59,7 +59,7 @@ public override void ExportToStream(TModel model, Stream outputStream, ProgressN
|
|||
i++;
|
||||
}
|
||||
|
||||
if (fileMissing)
|
||||
if (anyFileMissing)
|
||||
{
|
||||
Logger.Log("Some files are missing in local storage and will not be included in the export", LoggingTarget.Database, LogLevel.Error);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue