pinout: better logging
This commit is contained in:
parent
7b22fb871f
commit
8a78673a84
Binary file not shown.
|
@ -154,6 +154,7 @@ public class PinoutLogic {
|
||||||
Object pinName = pin.get("pin");
|
Object pinName = pin.get("pin");
|
||||||
Object pinTsName = pin.get("ts_name");
|
Object pinTsName = pin.get("ts_name");
|
||||||
if (pinId == null || pinClass == null || pinTsName == null) {
|
if (pinId == null || pinClass == null || pinTsName == null) {
|
||||||
|
log.info("Skipping " + pinId + "/" + pinClass + "/" + pinTsName);
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
if (pinName != null) {
|
if (pinName != null) {
|
||||||
|
@ -228,6 +229,7 @@ public class PinoutLogic {
|
||||||
for (File yamlFile : boardInputs.getBoardYamlKeys()) {
|
for (File yamlFile : boardInputs.getBoardYamlKeys()) {
|
||||||
header.append("// auto-generated by PinoutLogic.java based on " + yamlFile + "\n");
|
header.append("// auto-generated by PinoutLogic.java based on " + yamlFile + "\n");
|
||||||
readMetaInfo(yamlFile, boardInputs.getReader(yamlFile));
|
readMetaInfo(yamlFile, boardInputs.getReader(yamlFile));
|
||||||
|
log.info("Got so far: " + this);
|
||||||
}
|
}
|
||||||
log.info("Got from " + boardInputs.getBoardYamlKeys().size() + " file(s): " + this);
|
log.info("Got from " + boardInputs.getBoardYamlKeys().size() + " file(s): " + this);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue