Skip to content

Commit

Permalink
Silence noisy logs
Browse files Browse the repository at this point in the history
  • Loading branch information
Ryan Gonzalez committed Sep 16, 2015
1 parent d0ed540 commit 7ce53cc
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions webpack/storage.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,12 +55,9 @@ def url(self, name):
split = os.path.splitext(name)
raw_name = split[0]
suffix = split[1].lstrip('.') if len(split) > 1 else "js"
print(self.assets)
print(raw_name)
print(suffix)

if self.assets.has_key(raw_name) and self.assets.get(raw_name).has_key(suffix):
name = self.assets.get(raw_name).get(suffix)
print(name)
if (name.startswith('http://localhost')):
# Return full webpack-dev-server URL on development
return name
Expand Down

0 comments on commit 7ce53cc

Please sign in to comment.