Skip to content

Commit

Permalink
Merge pull request #1375 from tohidemyname/fixwronglogging
Browse files Browse the repository at this point in the history
Fixing wrong logging message
  • Loading branch information
tonyqus authored Jul 12, 2024
2 parents c731f1f + 1543c2c commit b892903
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 b892903

Please sign in to comment.