diff options
author | Trygve Laugstøl <trygvis@inamo.no> | 2018-08-02 22:00:36 +0200 |
---|---|---|
committer | Trygve Laugstøl <trygvis@inamo.no> | 2018-08-02 22:00:36 +0200 |
commit | a02955a2e10d4790828bf351f6b3e68ca10a50ff (patch) | |
tree | 44f483b721c2b748234d4caa516aea498cdb1147 | |
parent | 2c86705557841a978a94ad32e2751cb5bc68bc18 (diff) | |
download | ee-python-a02955a2e10d4790828bf351f6b3e68ca10a50ff.tar.gz ee-python-a02955a2e10d4790828bf351f6b3e68ca10a50ff.tar.bz2 ee-python-a02955a2e10d4790828bf351f6b3e68ca10a50ff.tar.xz ee-python-a02955a2e10d4790828bf351f6b3e68ca10a50ff.zip |
o Better logging when skipping digikey component resolving.
-rw-r--r-- | src/ee/digikey/doit.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ee/digikey/doit.py b/src/ee/digikey/doit.py index 0452530..93963c9 100644 --- a/src/ee/digikey/doit.py +++ b/src/ee/digikey/doit.py @@ -53,7 +53,7 @@ def resolve_schematic_components(output: DataSet, in_ds: DataSet): # We ignore components without mpn. if not mpn: - logger.debug("Skipping component without") + logger.debug("Skipping component without MPN: {}".format(ref)) continue components.append([mpn, ref]) |