Skip to content

Commit

Permalink
Merge pull request #58 from common-workflow-language/quiet-external-s…
Browse files Browse the repository at this point in the history
…chema

demote log about external schema
  • Loading branch information
mr-c authored Sep 6, 2016
2 parents f6744ad + f2d86c1 commit 423e48b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ MODULE=schema_salad
# `SHELL=bash` Will break Titus's laptop, so don't use BASH-isms like
# `[[` conditional expressions.
PYSOURCES=$(wildcard ${MODULE}/**.py tests/*.py) setup.py
DEVPKGS=pep8 diff_cover autopep8 pylint coverage pep257 pytest
DEVPKGS=pep8 diff_cover autopep8 pylint coverage pep257 pytest flake8

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

Expand Down
2 changes: 1 addition & 1 deletion schema_salad/ref_resolver.py
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ def add_schemas(self, ns, base_url):
for sch in aslist(ns):
fetchurl = urlparse.urljoin(base_url, sch)
if fetchurl not in self.cache:
_logger.info("Getting external schema %s", fetchurl)
_logger.debug("Getting external schema %s", fetchurl)
content = self.fetch_text(fetchurl)
self.cache[fetchurl] = rdflib.graph.Graph()
for fmt in ['xml', 'turtle', 'rdfa']:
Expand Down

0 comments on commit 423e48b

Please sign in to comment.