Skip to content

Commit

Permalink
Change shuffle fail logging to a warning
Browse files Browse the repository at this point in the history
  • Loading branch information
TheNathannator committed Jul 11, 2024
1 parent fcfda47 commit 8e78624
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion YARG.Core/Chart/Tracks/InstrumentDifficultyExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ public static void ShuffleNotes(this InstrumentDifficulty<GuitarNote> difficulty
if (availableFrets.Count < 1)
{
// Ignore un-shuffleable notes
YargLogger.LogFormatDebug("Cannot shuffle note at {0:0.000} ({1}), removing.", note.Time, note.Tick);
YargLogger.LogFormatWarning("Cannot shuffle note at {0:0.000} ({1}), removing.", note.Time, note.Tick);
continue;
}

Expand Down

0 comments on commit 8e78624

Please sign in to comment.