Skip to content

Commit

Permalink
Fixing wrong logging message
Browse files Browse the repository at this point in the history
  • Loading branch information
tohidemyname committed Jul 2, 2024
1 parent c36964d commit 1543c2c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main/HSSF/Record/CF/DataBarFormatting.cs
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ public DataBarFormatting(ILittleEndianInput in1)

if (percentMax < 0 || percentMax > 100)
//log.Log(POILogger.WARN, "Inconsistent Minimum Percentage found " + percentMin);
Console.WriteLine("Inconsistent Minimum Percentage found " + percentMin);
Console.WriteLine("Inconsistent Maximum Percentage found " + percentMax);

color = new ExtendedColor(in1);
thresholdMin = new DataBarThreshold(in1);
Expand Down

0 comments on commit 1543c2c

Please sign in to comment.