Skip to content

Commit 423e48b

Browse files
authored
Merge pull request #58 from common-workflow-language/quiet-external-schema
demote log about external schema
2 parents f6744ad + f2d86c1 commit 423e48b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ MODULE=schema_salad
2626
# `SHELL=bash` Will break Titus's laptop, so don't use BASH-isms like
2727
# `[[` conditional expressions.
2828
PYSOURCES=$(wildcard ${MODULE}/**.py tests/*.py) setup.py
29-
DEVPKGS=pep8 diff_cover autopep8 pylint coverage pep257 pytest
29+
DEVPKGS=pep8 diff_cover autopep8 pylint coverage pep257 pytest flake8
3030

3131
VERSION=$(shell git describe --tags --dirty | sed s/v//)
3232

schema_salad/ref_resolver.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ def add_schemas(self, ns, base_url):
181181
for sch in aslist(ns):
182182
fetchurl = urlparse.urljoin(base_url, sch)
183183
if fetchurl not in self.cache:
184-
_logger.info("Getting external schema %s", fetchurl)
184+
_logger.debug("Getting external schema %s", fetchurl)
185185
content = self.fetch_text(fetchurl)
186186
self.cache[fetchurl] = rdflib.graph.Graph()
187187
for fmt in ['xml', 'turtle', 'rdfa']:

0 commit comments

Comments
 (0)