Skip to content

Commit 3f06bde

Browse files
author
Jasper van Bourgognie
committed
Utils: Log ramp verification failure as Error
1 parent 23aa7ab commit 3f06bde

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libs/common/Utils.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -785,7 +785,7 @@ public static bool VerifyRamp(byte[] p)
785785
if ((byte)(p[i - 1] + 1) != p[i])
786786
failingIndices.Add(i);
787787

788-
Logger.Debug(failingIndices.Count + " failing indices");
788+
Logger.Error(failingIndices.Count + " failing indices out of " + p.Length);
789789

790790
return failingIndices.Count == 0;
791791
}

0 commit comments

Comments
 (0)