Skip to content

Commit

Permalink
Merge pull request #3099 from peterjc/patch-5
Browse files Browse the repository at this point in the history
Log loading of resources from *.loc files
  • Loading branch information
martenson authored Oct 26, 2016
2 parents 90d143c + 2ec9c05 commit f21279d
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions lib/galaxy/tools/data/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -465,6 +465,8 @@ def parse_file_fields( self, reader, errors=None, here="__HERE__" ):
if errors is not None:
errors.append( line_error )
log.warning( line_error )
if hasattr(reader, "name"):
log.debug("Loaded %i lines from '%s' for '%s'", len(rval), reader.name, self.name)
return rval

def get_column_name_list( self ):
Expand Down

0 comments on commit f21279d

Please sign in to comment.