浏览代码

Tweaked some more debug prints

Fabio Battaglia 4 年之前
父节点
当前提交
b319109684
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      src/main/java/info/hkzlab/dupal/analyzer/board/boardio/DuPALAnalyzer.java

+ 1 - 1
src/main/java/info/hkzlab/dupal/analyzer/board/boardio/DuPALAnalyzer.java

@@ -39,7 +39,7 @@ public class DuPALAnalyzer {
         int maxINVal = 1 << (dpci.palSpecs.getPinCount_IN() + dpci.palSpecs.getPinCount_IO());
 
         logger.info("detectIOTypeMask -> Starting IO type detection... This could take a while.");
-        logger.info("detectIOTypeMask -> Highest address for input pins: " + String.format("%06X", maxINVal-1));
+        logger.debug("detectIOTypeMask -> Highest address for input pins: " + String.format("%06X", maxINVal-1));
 
         for(int idx = 0; idx < maxINVal; idx++) {